package com.baasbox.exception;
public class BaasBoxException extends Exception {
public BaasBoxException() {
// TODO Auto-generated constructor stub
}
public BaasBoxException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public BaasBoxException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public BaasBoxException(String arg0, Throwable arg1) {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
}