All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.axway.ats.expectj.ExpectJException Maven / Gradle / Ivy

The newest version!
package com.axway.ats.expectj;

/**
 * This class extends the Exception class and encapsulates other exceptions.
 *
 * @author	Sachin Shekar Shetty
 */
public class ExpectJException extends Exception {

    private static final long serialVersionUID = 1L;

    /**
     * Create a new exception with an explanatory message.
     * @param message An explanation of what went wrong.
     */
    ExpectJException( String message ) {

        super( message );
    }

    /**
     * Create a new exception with an explanatory message and a reference to an exception
     * that made us throw this one.
     * @param message An explanation of what went wrong.
     * @param cause Another exception that is the reason to throw this one.
     */
    ExpectJException( String message,
                      Throwable cause ) {

        super( message, cause );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy