Examples of initCause()


Examples of org.omg.CORBA.IMP_LIMIT.initCause()

    public static final int NO_USABLE_PROFILE = OMGVMCID.value + 1 ;
   
    public IMP_LIMIT noUsableProfile( CompletionStatus cs, Throwable t ) {
        IMP_LIMIT exc = new IMP_LIMIT( NO_USABLE_PROFILE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "OMG.noUsableProfile",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

Examples of org.omg.CORBA.INITIALIZE.initCause()

    public static final int CANNOT_READ_REPOSITORY_DB = SUNVMCID.value + 401 ;
   
    public INITIALIZE cannotReadRepositoryDb( CompletionStatus cs, 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 ) ;
View Full Code Here

Examples of org.omg.CORBA.INTERNAL.initCause()

    public static final int CANNOT_WRITE_REPOSITORY_DB = SUNVMCID.value + 401 ;
   
    public INTERNAL cannotWriteRepositoryDb( CompletionStatus cs, 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 ) ;
View Full Code Here

Examples of org.omg.CORBA.INTF_REPOS.initCause()

    public static final int NO_IR = OMGVMCID.value + 1 ;
   
    public INTF_REPOS noIr( CompletionStatus cs, Throwable t ) {
        INTF_REPOS exc = new INTF_REPOS( NO_IR, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "OMG.noIr",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

Examples of org.omg.CORBA.INV_OBJREF.initCause()

    public static final int NO_SERVER_WCHAR_CODESET_CMP = OMGVMCID.value + 1 ;
   
    public INV_OBJREF noServerWcharCodesetCmp( CompletionStatus cs, Throwable t ) {
        INV_OBJREF exc = new INV_OBJREF( NO_SERVER_WCHAR_CODESET_CMP, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "OMG.noServerWcharCodesetCmp",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

Examples of org.omg.CORBA.INV_POLICY.initCause()

    public static final int IOR_POLICY_RECONCILE_ERROR = OMGVMCID.value + 1 ;
   
    public INV_POLICY iorPolicyReconcileError( CompletionStatus cs, Throwable t ) {
        INV_POLICY exc = new INV_POLICY( IOR_POLICY_RECONCILE_ERROR, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "OMG.iorPolicyReconcileError",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

Examples of org.omg.CORBA.MARSHAL.initCause()

        try {
            readValue(reader, copy);
        } catch (java.io.IOException ex) {
            MARSHAL m = new MARSHAL(ex.getMessage() + " reading instance of "
                    + getJavaClass());
            m.initCause(ex);
            throw m;
        }

        return readResolve(copy);
    }
View Full Code Here

Examples of org.omg.CORBA.NO_IMPLEMENT.initCause()

    public static final int MISSING_LOCAL_VALUE_IMPL = OMGVMCID.value + 1 ;
   
    public NO_IMPLEMENT missingLocalValueImpl( CompletionStatus cs, Throwable t ) {
        NO_IMPLEMENT exc = new NO_IMPLEMENT( MISSING_LOCAL_VALUE_IMPL, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "OMG.missingLocalValueImpl",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

Examples of org.omg.CORBA.NO_RESOURCES.initCause()

    public static final int PI_OPERATION_NOT_SUPPORTED1 = OMGVMCID.value + 1 ;
   
    public NO_RESOURCES piOperationNotSupported1( CompletionStatus cs, Throwable t ) {
        NO_RESOURCES exc = new NO_RESOURCES( PI_OPERATION_NOT_SUPPORTED1, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.FINE )) {
            Object[] parameters = null ;
            doLog( Level.FINE, "OMG.piOperationNotSupported1",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

Examples of org.omg.CORBA.OBJECT_NOT_EXIST.initCause()

    public static final int ERROR_IN_BAD_SERVER_ID_HANDLER = SUNVMCID.value + 401 ;
   
    public OBJECT_NOT_EXIST errorInBadServerIdHandler( CompletionStatus cs, 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 ) ;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.