package votorola.g;


/** Thrown when a Votorola-specific security exception occurs.
  */
public class VotorolaSecurityException extends SecurityException
{

    public VotorolaSecurityException() {}


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


    public VotorolaSecurityException( String message ) { super( message ); }


    public VotorolaSecurityException( String message, Throwable cause ) { super( message, cause ); }


}