package com.breakersoft.plow.exceptions;
public class PlowException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -3346252622151361650L;
public PlowException() {
// TODO Auto-generated constructor stub
}
public PlowException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public PlowException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public PlowException(String arg0, Throwable arg1) {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
}