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.
13 lines
334 B
13 lines
334 B
package com.arialyy.aria.exception;
|
|
|
|
/**
|
|
* Created by Aria.Lao on 2017/1/18.
|
|
* Aria 文件异常
|
|
*/
|
|
public class FileException extends NullPointerException {
|
|
private static final String ARIA_FILE_EXCEPTION = "Aria Exception:";
|
|
|
|
public FileException(String detailMessage) {
|
|
super(ARIA_FILE_EXCEPTION + detailMessage);
|
|
}
|
|
}
|
|
|