앱)custom Exception class 클래스 예제
public class testException extends Exception {
private static final long serialVersionUID = 7897401638242416328L;
public testException(String msg){
super(msg);
}
}
private static final long serialVersionUID = 7897401638242416328L;
public testException(String msg){
super(msg);
}
}
'백엔드개발 > 자바스프링' 카테고리의 다른 글
앱)springframework annotation 예제 (0) | 2018.01.25 |
---|---|
앱)메이븐 maven pom.xml 예제 (0) | 2018.01.25 |
앱)springframework로 batch 예제(main+applicationcontext+properties+logback) (0) | 2018.01.23 |
앱)자바 외부 실행파일 실행 1.7 이상에서 processbuilder 예제로 실행하고 정상적으로 종료 (1) | 2018.01.22 |
앱)runable jar 파일 실행이 되지 않을때 classnotfoundexception에러 날때 (0) | 2018.01.15 |