package com.dragonsoft.tryapp.common.exceptions;

/**
 * This class represents the root Exception for the Try Application. 
 * All Exceptions specific to the TryApplication should be of this type.
 */
public class TryException extends Exception {

    public TryException() {
        super();
    }

    public TryException(String arg0, Throwable arg1) {
        super(arg0, arg1);
    }

    public TryException(String string) {
        super(string);
    }

    public TryException(TryException e) {
        super(e);
    }

} // TryException