






public class SQLErrorException extends RuntimeException{
private Exception origin;
public SQLErrorException(String message, Exception origin){
super(message);
this.origin = origin;
}
public Exception getOrigin(){
return origin;
}
}
RuntimeException은 Java Virtual Machine의 정상적인 작동 중에 발생할 수 있는 예외의 슈퍼 클래스이다.
RuntimeException 및 해당 서브 클래스는 unchecked exception이다.

인자의 개수를 가변적으로 할수 있고, 사용했을 때 인자가 아예 없어도되고 배열도 인자가 될 수 있다.
