FileDocCategorySizeDatePackage
CmpCompilerException.javaAPI DocGlassfish v2 API3045Fri May 04 22:32:56 BST 2007com.sun.ejb.codegen

CmpCompilerException

public class CmpCompilerException extends Exception
The class CmpCompilerException is a form of Throwable that indicates error conditions in CMP compilation during deployment.
author
Nazrul Islam
since
JDK1.4

Fields Summary
Constructors Summary
public CmpCompilerException()
Constructs a new exception with null as its detail message.

 
        super();
    
public CmpCompilerException(String s)
Constructs a new exception with the specified detail message.

param
s the detail message

        super(s);
    
public CmpCompilerException(Throwable t)
Constructs a new exception with the specified cause and a detail message.

param
t the cause

        super(t);
    
public CmpCompilerException(String msg, Throwable t)
Constructs a new exception with the specified detail message and cause.

param
msg the detail message
param
t the cause

        super(msg, t);
    
Methods Summary