001package votorola.g;
002
003
004/** Thrown when a Votorola-specific security exception occurs.
005  */
006public class VotorolaSecurityException extends SecurityException
007{
008
009    public VotorolaSecurityException() {}
010
011
012    public VotorolaSecurityException( Throwable cause ) { super( cause ); }
013
014
015    public VotorolaSecurityException( String message ) { super( message ); }
016
017
018    public VotorolaSecurityException( String message, Throwable cause ) { super( message, cause ); }
019
020
021}