package com.voxeo.tropo;
@SuppressWarnings("serial")
public class ErrorException extends RuntimeException {
public ErrorException() {
// TODO Auto-generated constructor stub
}
public ErrorException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public ErrorException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public ErrorException(String arg0, Throwable arg1) {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
}