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