com.evasion.common.flex.factory.ResourceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of COMMON Show documentation
Show all versions of COMMON Show documentation
API de l'application modulaire evasion-en-ligne
package com.evasion.common.flex.factory;
/**
* Resource Exception.
*/
public class ResourceException extends Exception
{
protected ResourceException( String message )
{
super( message );
}
protected ResourceException( String message, Throwable cause )
{
super( message, cause );
}
protected ResourceException( Throwable cause )
{
super( cause );
}
}