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

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

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

/**
 * Timeout while waiting for a {@link Spawn}.
 * @author [email protected]
 */
public class TimeoutException extends Exception {

    private static final long serialVersionUID = 1L;

    /**
     * Create a new exception with an explanatory message.
     * @param message An explanation of what went wrong.
     */
    TimeoutException( 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.
     */
    TimeoutException( String message,
                      Throwable cause ) {

        super( message, cause );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy