Home | History | Annotate | Download | only in core

Lines Matching refs:cause

28      * Create a new instance with the specified detail message and no cause

36 * Create a new instance with the specified detail message and no cause
37 * @param cause - the Throwable cause
39 public MockFtpServerException(Throwable cause) {
40 super(cause);
44 * Create a new instance with the specified detail message and cause
46 * @param cause - the Throwable cause
48 public MockFtpServerException(String message, Throwable cause) {
49 super(message, cause);