[Ejtools-cvs] CVS: thirdparty/sun/jsr88/src/main/javax/enterprise/deploy/spi/exceptions BeanNotFound
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-04-18 20:45:58
|
Update of /cvsroot/ejtools/thirdparty/sun/jsr88/src/main/javax/enterprise/deploy/spi/exceptions In directory usw-pr-cvs1:/tmp/cvs-serv31212/sun/jsr88/src/main/javax/enterprise/deploy/spi/exceptions Added Files: BeanNotFoundException.java ClientExecuteException.java ConfigurationException.java DConfigBeanVersionUnsupportedException.java DeploymentManagerCreationException.java InvalidModuleException.java OperationUnsupportedException.java TargetException.java Log Message: Initial Import --- NEW FILE: BeanNotFoundException.java --- package javax.enterprise.deploy.spi.exceptions; /** * This exception is to report that the bean is * not a child of the parent bean. */ public class BeanNotFoundException extends Exception { /** * Creates an new BeanNotFoundException object. * * @param s a string indicating what was wrong * with the target. */ public BeanNotFoundException(String s) { super(s); } } --- NEW FILE: ClientExecuteException.java --- /* * ClientExecuteException.java * * Created on May 23, 2001, 2:45 PM */ package javax.enterprise.deploy.spi.exceptions; /** * This exception reports errors in setting up an application client * for execution. * * @author gfink * @version */ public class ClientExecuteException extends java.lang.Exception { /** * Creates new <code>ClientExecuteException</code> without detail message. */ public ClientExecuteException() { } /** * Constructs an <code>ClientExecuteException</code> with the *specified detail message. * @param msg the detail message. */ public ClientExecuteException(String msg) { super(msg); } } --- NEW FILE: ConfigurationException.java --- /* * ConfigurationException.java * * Created on May 23, 2001, 2:45 PM */ package javax.enterprise.deploy.spi.exceptions; /** * This exception reports errors in generating a configuration bean. * * @author gfink * @version */ public class ConfigurationException extends java.lang.Exception { /** * Creates new <code>ConfigurationException</code> without detail message. */ public ConfigurationException() { } /** * Constructs an <code>ConfigurationException</code> with the specified detail message. * @param msg the detail message. */ public ConfigurationException(String msg) { super(msg); } } --- NEW FILE: DConfigBeanVersionUnsupportedException.java --- package javax.enterprise.deploy.spi.exceptions; /** * This exception is to report that there is no support * for the DConfigBean version requested. */ public class DConfigBeanVersionUnsupportedException extends Exception { /** * Creates an new DConfigBeanVersionUnsupportedException object. * * @params a string indicating what was wrong * with the version request. */ public DConfigBeanVersionUnsupportedException(String s) { super(s); } } --- NEW FILE: DeploymentManagerCreationException.java --- package javax.enterprise.deploy.spi.exceptions; /** * This exception is to report problems in returning * a DeploymentManager object cause by such things as * server down, unable to authenticate and the like. */ public class DeploymentManagerCreationException extends Exception { /** * Creates an new DeploymentManagerCreationException object. * * @param s a string providing more information about the problem. */ public DeploymentManagerCreationException(String s) { super(s); } } --- NEW FILE: InvalidModuleException.java --- package javax.enterprise.deploy.spi.exceptions; /** * This exception is to report an invalid J2EE deployment * module type. */ public class InvalidModuleException extends Exception { /** * Creates an new InvalidModuleException object. * * @param s a string indicating what was wrong * with the module type. */ public InvalidModuleException(String s) { super(s); } } --- NEW FILE: OperationUnsupportedException.java --- package javax.enterprise.deploy.spi.exceptions; /** * This exception is to report that the method * called is not supported by this implementation. */ public class OperationUnsupportedException extends Exception { /** * Creates an new OperationUnsupportedException object. * * @param s a string indicating what was wrong * with the target. */ public OperationUnsupportedException(String s) { super(s); } } --- NEW FILE: TargetException.java --- package javax.enterprise.deploy.spi.exceptions; /** * This exception is to report bad target designators. */ public class TargetException extends Exception { /** * Creates an new TargetException object. * * @param s a string indicating what was wrong * with the target. */ public TargetException(String s) { super(s); } } |