You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
967 B

package com.wb.excel.api.exception;
/**
* Created on 2014/10/12.
*
* @author
* @version 0.1.0
*/
public class IllegalParameterException extends RuntimeException {
private static final long serialVersionUID = 234122996006212387L;
/**
* Constructs a new runtime exception with {@code null} as its
* detail message. The cause is not initialized, and may subsequently be
* initialized by a call to {@link #initCause}.
*/
public IllegalParameterException() {
super();
}
/**
* Constructs a new runtime exception with the specified detail message.
* The cause is not initialized, and may subsequently be initialized by a
* call to {@link #initCause}.
*
* @param message the detail message. The detail message is saved for
* later retrieval by the {@link #getMessage()} method.
*/
public IllegalParameterException(String message) {
super(message);
}
}

Powered by TurnKey Linux.