/*
* @author : Elangovan
* @version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : CMSAdminException.java
*
* Creation / Modification History
* Elangovan 12-Dec-2002 Created
*
*/
package oracle.otnsamples.cmsxdb.exception;
/**
* This class extends the standard Exception. It is thrown when there is a failure
* in handling Admin requests.
*/
public class CMSAdminException extends Exception {
/**
* Default constructor.
*/
public CMSAdminException( ) {
super( );
}
/**
* Constructs a new CMSAdminException object with the given error message.
*
* @param errMsg Exception message
*/
public CMSAdminException( String errMsg ) {
super( errMsg );
}
}