public class UserException extends Exception{
	String exception;
	public UserException(){
		super();
		exception="Unknown";
	}
	public UserException(String exp){
		super(exp);
		this.exception=exp;
	}
	public String getException(){
		return this.exception;
	}
}
