FileDocCategorySizeDatePackage
ActivationSystemException.javaAPI DocJava SE 6 API9578Tue Jun 10 01:46:20 BST 2008com.sun.corba.se.impl.logging

ActivationSystemException

public class ActivationSystemException extends com.sun.corba.se.spi.logging.LogWrapperBase

Fields Summary
private static com.sun.corba.se.spi.logging.LogWrapperFactory
factory
public static final int
CANNOT_READ_REPOSITORY_DB
public static final int
CANNOT_ADD_INITIAL_NAMING
public static final int
CANNOT_WRITE_REPOSITORY_DB
public static final int
SERVER_NOT_EXPECTED_TO_REGISTER
public static final int
UNABLE_TO_START_PROCESS
public static final int
SERVER_NOT_RUNNING
public static final int
ERROR_IN_BAD_SERVER_ID_HANDLER
Constructors Summary
public ActivationSystemException(Logger logger)

        super( logger ) ;
    
Methods Summary
public org.omg.CORBA.INITIALIZEcannotAddInitialNaming(java.lang.Throwable t)

        return cannotAddInitialNaming( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INITIALIZEcannotAddInitialNaming()

        return cannotAddInitialNaming( CompletionStatus.COMPLETED_NO, null  ) ;
    
public org.omg.CORBA.INITIALIZEcannotAddInitialNaming(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        INITIALIZE exc = new INITIALIZE( CANNOT_ADD_INITIAL_NAMING, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ACTIVATION.cannotAddInitialNaming",
                parameters, ActivationSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INITIALIZEcannotAddInitialNaming(org.omg.CORBA.CompletionStatus cs)

        return cannotAddInitialNaming( cs, null  ) ;
    
public org.omg.CORBA.INITIALIZEcannotReadRepositoryDb(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        INITIALIZE exc = new INITIALIZE( CANNOT_READ_REPOSITORY_DB, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ACTIVATION.cannotReadRepositoryDb",
                parameters, ActivationSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INITIALIZEcannotReadRepositoryDb(org.omg.CORBA.CompletionStatus cs)

        return cannotReadRepositoryDb( cs, null  ) ;
    
public org.omg.CORBA.INITIALIZEcannotReadRepositoryDb(java.lang.Throwable t)

        return cannotReadRepositoryDb( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INITIALIZEcannotReadRepositoryDb()

        return cannotReadRepositoryDb( CompletionStatus.COMPLETED_NO, null  ) ;
    
public org.omg.CORBA.INTERNALcannotWriteRepositoryDb(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        INTERNAL exc = new INTERNAL( CANNOT_WRITE_REPOSITORY_DB, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ACTIVATION.cannotWriteRepositoryDb",
                parameters, ActivationSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALcannotWriteRepositoryDb(org.omg.CORBA.CompletionStatus cs)

        return cannotWriteRepositoryDb( cs, null  ) ;
    
public org.omg.CORBA.INTERNALcannotWriteRepositoryDb(java.lang.Throwable t)

        return cannotWriteRepositoryDb( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INTERNALcannotWriteRepositoryDb()

        return cannotWriteRepositoryDb( CompletionStatus.COMPLETED_NO, null  ) ;
    
public org.omg.CORBA.OBJECT_NOT_EXISTerrorInBadServerIdHandler(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        OBJECT_NOT_EXIST exc = new OBJECT_NOT_EXIST( ERROR_IN_BAD_SERVER_ID_HANDLER, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ACTIVATION.errorInBadServerIdHandler",
                parameters, ActivationSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.OBJECT_NOT_EXISTerrorInBadServerIdHandler(org.omg.CORBA.CompletionStatus cs)

        return errorInBadServerIdHandler( cs, null  ) ;
    
public org.omg.CORBA.OBJECT_NOT_EXISTerrorInBadServerIdHandler(java.lang.Throwable t)

        return errorInBadServerIdHandler( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.OBJECT_NOT_EXISTerrorInBadServerIdHandler()

        return errorInBadServerIdHandler( CompletionStatus.COMPLETED_NO, null  ) ;
    
public static com.sun.corba.se.impl.logging.ActivationSystemExceptionget(com.sun.corba.se.spi.orb.ORB orb, java.lang.String logDomain)

    
            
    
        ActivationSystemException wrapper = 
            (ActivationSystemException) orb.getLogWrapper( logDomain, 
                "ACTIVATION", factory ) ;
        return wrapper ;
    
public static com.sun.corba.se.impl.logging.ActivationSystemExceptionget(java.lang.String logDomain)

        ActivationSystemException wrapper = 
            (ActivationSystemException) ORB.staticGetLogWrapper( logDomain, 
                "ACTIVATION", factory ) ;
        return wrapper ;
    
public org.omg.CORBA.INTERNALserverNotExpectedToRegister(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        INTERNAL exc = new INTERNAL( SERVER_NOT_EXPECTED_TO_REGISTER, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ACTIVATION.serverNotExpectedToRegister",
                parameters, ActivationSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALserverNotExpectedToRegister(org.omg.CORBA.CompletionStatus cs)

        return serverNotExpectedToRegister( cs, null  ) ;
    
public org.omg.CORBA.INTERNALserverNotExpectedToRegister(java.lang.Throwable t)

        return serverNotExpectedToRegister( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INTERNALserverNotExpectedToRegister()

        return serverNotExpectedToRegister( CompletionStatus.COMPLETED_NO, null  ) ;
    
public org.omg.CORBA.INTERNALserverNotRunning(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        INTERNAL exc = new INTERNAL( SERVER_NOT_RUNNING, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ACTIVATION.serverNotRunning",
                parameters, ActivationSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALserverNotRunning(org.omg.CORBA.CompletionStatus cs)

        return serverNotRunning( cs, null  ) ;
    
public org.omg.CORBA.INTERNALserverNotRunning(java.lang.Throwable t)

        return serverNotRunning( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INTERNALserverNotRunning()

        return serverNotRunning( CompletionStatus.COMPLETED_NO, null  ) ;
    
public org.omg.CORBA.INTERNALunableToStartProcess(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        INTERNAL exc = new INTERNAL( UNABLE_TO_START_PROCESS, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ACTIVATION.unableToStartProcess",
                parameters, ActivationSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALunableToStartProcess(org.omg.CORBA.CompletionStatus cs)

        return unableToStartProcess( cs, null  ) ;
    
public org.omg.CORBA.INTERNALunableToStartProcess(java.lang.Throwable t)

        return unableToStartProcess( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INTERNALunableToStartProcess()

        return unableToStartProcess( CompletionStatus.COMPLETED_NO, null  ) ;