FileDocCategorySizeDatePackage
RepositoryException.javaAPI DocGlassfish v2 API3099Fri May 04 22:24:44 BST 2007com.sun.enterprise.admin.wsmgmt.repository.spi

RepositoryException

public class RepositoryException extends com.sun.enterprise.admin.wsmgmt.WSMgmtException
An exception that provides information on repository error.
author
Satish Viswanatham
since
JDK1.5

Fields Summary
Constructors Summary
public RepositoryException(String msg, Throwable cause)
Constructs a repository exception with the specified message and cause.

param
msg the detail message for this exception
param
cause the cause of this error

        super(msg, cause);
    
public RepositoryException(Throwable cause)
Constructs a repository exception with the cause.

param
cause the cause of this error

        super(cause);
    
public RepositoryException(String msg)
Constructs a repository exception with the specified message.

param
msg the detail message for this exception

        super(msg);
    
public RepositoryException()
Constructs a repository exception.

        super();
    
Methods Summary