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

help.swgoh.api.exception.SwgohAPIException Maven / Gradle / Ivy

package help.swgoh.api.exception;

/**
 * Thrown by the API client when an exception occurs.
 *
 * @since 1.0.0
 */
public class SwgohAPIException extends RuntimeException
{
    public SwgohAPIException()
    {
        this( "Exception has occurred." );
    }

    public SwgohAPIException( String errorMessage )
    {
        super( errorMessage );
    }

    public SwgohAPIException( Throwable cause )
    {
        super( cause );
    }

    public SwgohAPIException( String errorMessage, Throwable cause )
    {
        super( errorMessage, cause );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy