FileDocCategorySizeDatePackage
IORSystemException.javaAPI DocJava SE 5 API18011Fri Aug 26 17:56:20 BST 2005com.sun.corba.se.impl.logging

IORSystemException

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

Fields Summary
private static com.sun.corba.se.spi.logging.LogWrapperFactory
factory
public static final int
ORT_NOT_INITIALIZED
public static final int
NULL_POA
public static final int
BAD_MAGIC
public static final int
STRINGIFY_WRITE_ERROR
public static final int
TAGGED_PROFILE_TEMPLATE_FACTORY_NOT_FOUND
public static final int
INVALID_JDK1_3_1_PATCH_LEVEL
public static final int
GET_LOCAL_SERVANT_FAILURE
public static final int
ADAPTER_ID_NOT_AVAILABLE
public static final int
SERVER_ID_NOT_AVAILABLE
public static final int
ORB_ID_NOT_AVAILABLE
public static final int
OBJECT_ADAPTER_ID_NOT_AVAILABLE
public static final int
BAD_OID_IN_IOR_TEMPLATE_LIST
public static final int
INVALID_TAGGED_PROFILE
public static final int
BAD_IIOP_ADDRESS_PORT
public static final int
IOR_MUST_HAVE_IIOP_PROFILE
Constructors Summary
public IORSystemException(Logger logger)

        super( logger ) ;
    
Methods Summary
public org.omg.CORBA.BAD_OPERATIONadapterIdNotAvailable(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        BAD_OPERATION exc = new BAD_OPERATION( ADAPTER_ID_NOT_AVAILABLE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.adapterIdNotAvailable",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.BAD_OPERATIONadapterIdNotAvailable(org.omg.CORBA.CompletionStatus cs)

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

        return adapterIdNotAvailable( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.BAD_OPERATIONadapterIdNotAvailable()

        return adapterIdNotAvailable( CompletionStatus.COMPLETED_NO, null  ) ;
    
public org.omg.CORBA.BAD_PARAMbadIiopAddressPort(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t, java.lang.Object arg0)

    
             
        BAD_PARAM exc = new BAD_PARAM( BAD_IIOP_ADDRESS_PORT, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = new Object[1] ;
            parameters[0] = arg0 ;
            doLog( Level.WARNING, "IOR.badIiopAddressPort",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.BAD_PARAMbadIiopAddressPort(org.omg.CORBA.CompletionStatus cs, java.lang.Object arg0)

        return badIiopAddressPort( cs, null, arg0 ) ;
    
public org.omg.CORBA.BAD_PARAMbadIiopAddressPort(java.lang.Throwable t, java.lang.Object arg0)

        return badIiopAddressPort( CompletionStatus.COMPLETED_NO, t, arg0 ) ;
    
public org.omg.CORBA.BAD_PARAMbadIiopAddressPort(java.lang.Object arg0)

        return badIiopAddressPort( CompletionStatus.COMPLETED_NO, null, arg0 ) ;
    
public org.omg.CORBA.INTERNALbadMagic(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t, java.lang.Object arg0)

    
             
        INTERNAL exc = new INTERNAL( BAD_MAGIC, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = new Object[1] ;
            parameters[0] = arg0 ;
            doLog( Level.WARNING, "IOR.badMagic",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALbadMagic(org.omg.CORBA.CompletionStatus cs, java.lang.Object arg0)

        return badMagic( cs, null, arg0 ) ;
    
public org.omg.CORBA.INTERNALbadMagic(java.lang.Throwable t, java.lang.Object arg0)

        return badMagic( CompletionStatus.COMPLETED_NO, t, arg0 ) ;
    
public org.omg.CORBA.INTERNALbadMagic(java.lang.Object arg0)

        return badMagic( CompletionStatus.COMPLETED_NO, null, arg0 ) ;
    
public org.omg.CORBA.BAD_PARAMbadOidInIorTemplateList(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        BAD_PARAM exc = new BAD_PARAM( BAD_OID_IN_IOR_TEMPLATE_LIST, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.badOidInIorTemplateList",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.BAD_PARAMbadOidInIorTemplateList(org.omg.CORBA.CompletionStatus cs)

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

        return badOidInIorTemplateList( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.BAD_PARAMbadOidInIorTemplateList()

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

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

        IORSystemException wrapper = 
            (IORSystemException) ORB.staticGetLogWrapper( logDomain, 
                "IOR", factory ) ;
        return wrapper ;
    
public org.omg.CORBA.INTERNALgetLocalServantFailure(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t, java.lang.Object arg0)

    
             
        INTERNAL exc = new INTERNAL( GET_LOCAL_SERVANT_FAILURE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.FINE )) {
            Object[] parameters = new Object[1] ;
            parameters[0] = arg0 ;
            doLog( Level.FINE, "IOR.getLocalServantFailure",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALgetLocalServantFailure(org.omg.CORBA.CompletionStatus cs, java.lang.Object arg0)

        return getLocalServantFailure( cs, null, arg0 ) ;
    
public org.omg.CORBA.INTERNALgetLocalServantFailure(java.lang.Throwable t, java.lang.Object arg0)

        return getLocalServantFailure( CompletionStatus.COMPLETED_NO, t, arg0 ) ;
    
public org.omg.CORBA.INTERNALgetLocalServantFailure(java.lang.Object arg0)

        return getLocalServantFailure( CompletionStatus.COMPLETED_NO, null, arg0 ) ;
    
public org.omg.CORBA.INTERNALinvalidJdk131PatchLevel(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t, java.lang.Object arg0)

    
             
        INTERNAL exc = new INTERNAL( INVALID_JDK1_3_1_PATCH_LEVEL, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = new Object[1] ;
            parameters[0] = arg0 ;
            doLog( Level.WARNING, "IOR.invalidJdk131PatchLevel",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALinvalidJdk131PatchLevel(org.omg.CORBA.CompletionStatus cs, java.lang.Object arg0)

        return invalidJdk131PatchLevel( cs, null, arg0 ) ;
    
public org.omg.CORBA.INTERNALinvalidJdk131PatchLevel(java.lang.Throwable t, java.lang.Object arg0)

        return invalidJdk131PatchLevel( CompletionStatus.COMPLETED_NO, t, arg0 ) ;
    
public org.omg.CORBA.INTERNALinvalidJdk131PatchLevel(java.lang.Object arg0)

        return invalidJdk131PatchLevel( CompletionStatus.COMPLETED_NO, null, arg0 ) ;
    
public org.omg.CORBA.BAD_PARAMinvalidTaggedProfile(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t)

    
            
        BAD_PARAM exc = new BAD_PARAM( INVALID_TAGGED_PROFILE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.invalidTaggedProfile",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.BAD_PARAMinvalidTaggedProfile(org.omg.CORBA.CompletionStatus cs)

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

        return invalidTaggedProfile( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.BAD_PARAMinvalidTaggedProfile()

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

    
            
        INV_OBJREF exc = new INV_OBJREF( IOR_MUST_HAVE_IIOP_PROFILE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.iorMustHaveIiopProfile",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INV_OBJREFiorMustHaveIiopProfile(org.omg.CORBA.CompletionStatus cs)

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

        return iorMustHaveIiopProfile( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INV_OBJREFiorMustHaveIiopProfile()

        return iorMustHaveIiopProfile( CompletionStatus.COMPLETED_NO, null  ) ;
    
public org.omg.CORBA.INTERNALnullPoa(java.lang.Throwable t)

        return nullPoa( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INTERNALnullPoa()

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

    
            
        INTERNAL exc = new INTERNAL( NULL_POA, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.nullPoa",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALnullPoa(org.omg.CORBA.CompletionStatus cs)

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

    
            
        BAD_OPERATION exc = new BAD_OPERATION( OBJECT_ADAPTER_ID_NOT_AVAILABLE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.objectAdapterIdNotAvailable",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.BAD_OPERATIONobjectAdapterIdNotAvailable(org.omg.CORBA.CompletionStatus cs)

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

        return objectAdapterIdNotAvailable( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.BAD_OPERATIONobjectAdapterIdNotAvailable()

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

    
            
        BAD_OPERATION exc = new BAD_OPERATION( ORB_ID_NOT_AVAILABLE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.orbIdNotAvailable",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.BAD_OPERATIONorbIdNotAvailable(org.omg.CORBA.CompletionStatus cs)

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

        return orbIdNotAvailable( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.BAD_OPERATIONorbIdNotAvailable()

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

    
            
        INTERNAL exc = new INTERNAL( ORT_NOT_INITIALIZED, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.ortNotInitialized",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALortNotInitialized(org.omg.CORBA.CompletionStatus cs)

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

        return ortNotInitialized( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INTERNALortNotInitialized()

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

    
            
        BAD_OPERATION exc = new BAD_OPERATION( SERVER_ID_NOT_AVAILABLE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.serverIdNotAvailable",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.BAD_OPERATIONserverIdNotAvailable(org.omg.CORBA.CompletionStatus cs)

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

        return serverIdNotAvailable( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.BAD_OPERATIONserverIdNotAvailable()

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

    
            
        INTERNAL exc = new INTERNAL( STRINGIFY_WRITE_ERROR, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "IOR.stringifyWriteError",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALstringifyWriteError(org.omg.CORBA.CompletionStatus cs)

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

        return stringifyWriteError( CompletionStatus.COMPLETED_NO, t  ) ;
    
public org.omg.CORBA.INTERNALstringifyWriteError()

        return stringifyWriteError( CompletionStatus.COMPLETED_NO, null  ) ;
    
public org.omg.CORBA.INTERNALtaggedProfileTemplateFactoryNotFound(org.omg.CORBA.CompletionStatus cs, java.lang.Throwable t, java.lang.Object arg0)

    
             
        INTERNAL exc = new INTERNAL( TAGGED_PROFILE_TEMPLATE_FACTORY_NOT_FOUND, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
        
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = new Object[1] ;
            parameters[0] = arg0 ;
            doLog( Level.WARNING, "IOR.taggedProfileTemplateFactoryNotFound",
                parameters, IORSystemException.class, exc ) ;
        }
        
        return exc ;
    
public org.omg.CORBA.INTERNALtaggedProfileTemplateFactoryNotFound(org.omg.CORBA.CompletionStatus cs, java.lang.Object arg0)

        return taggedProfileTemplateFactoryNotFound( cs, null, arg0 ) ;
    
public org.omg.CORBA.INTERNALtaggedProfileTemplateFactoryNotFound(java.lang.Throwable t, java.lang.Object arg0)

        return taggedProfileTemplateFactoryNotFound( CompletionStatus.COMPLETED_NO, t, arg0 ) ;
    
public org.omg.CORBA.INTERNALtaggedProfileTemplateFactoryNotFound(java.lang.Object arg0)

        return taggedProfileTemplateFactoryNotFound( CompletionStatus.COMPLETED_NO, null, arg0 ) ;