com.axway.ats.expectj.ExpectJException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ats-expectj Show documentation
Show all versions of ats-expectj Show documentation
ExpectJ patched by AXWAY ATS Team
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