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.
30 lines
856 B
30 lines
856 B
package com.wb.excel.api.exception;
|
|
|
|
/**
|
|
* Created on 2014/10/12.
|
|
*
|
|
* @author
|
|
* @version 0.1.0
|
|
*/
|
|
public class TemplateNotMatchException extends Exception {
|
|
/**
|
|
* Constructs a new 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 TemplateNotMatchException() {
|
|
}
|
|
|
|
/**
|
|
* Constructs a new 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 TemplateNotMatchException(String message) {
|
|
super(message);
|
|
}
|
|
}
|