Package org.omg.CORBA

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


    public static final int BAD_TYPECODE_FOR_CUSTOM_VALUE = SUNVMCID.value + 231 ;
   
    public MARSHAL badTypecodeForCustomValue( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( BAD_TYPECODE_FOR_CUSTOM_VALUE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.badTypecodeForCustomValue",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here


    public static final int ERROR_INVOKING_HELPER_WRITE = SUNVMCID.value + 232 ;
   
    public MARSHAL errorInvokingHelperWrite( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( ERROR_INVOKING_HELPER_WRITE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.errorInvokingHelperWrite",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here

    public static final int BAD_DIGIT_IN_FIXED = SUNVMCID.value + 233 ;
   
    public MARSHAL badDigitInFixed( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( BAD_DIGIT_IN_FIXED, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.badDigitInFixed",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here

    public static final int REF_TYPE_INDIR_TYPE = SUNVMCID.value + 234 ;
   
    public MARSHAL refTypeIndirType( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( REF_TYPE_INDIR_TYPE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.refTypeIndirType",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here

    public static final int BAD_RESERVED_LENGTH = SUNVMCID.value + 235 ;
   
    public MARSHAL badReservedLength( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( BAD_RESERVED_LENGTH, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.badReservedLength",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here

    public static final int NULL_NOT_ALLOWED = SUNVMCID.value + 236 ;
   
    public MARSHAL nullNotAllowed( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( NULL_NOT_ALLOWED, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.nullNotAllowed",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here

    public static final int UNION_DISCRIMINATOR_ERROR = SUNVMCID.value + 238 ;
   
    public MARSHAL unionDiscriminatorError( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( UNION_DISCRIMINATOR_ERROR, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.unionDiscriminatorError",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here

    public static final int CANNOT_MARSHAL_NATIVE = SUNVMCID.value + 239 ;
   
    public MARSHAL cannotMarshalNative( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( CANNOT_MARSHAL_NATIVE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.cannotMarshalNative",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here

    public static final int CANNOT_MARSHAL_BAD_TCKIND = SUNVMCID.value + 240 ;
   
    public MARSHAL cannotMarshalBadTckind( CompletionStatus cs, Throwable t ) {
        MARSHAL exc = new MARSHAL( CANNOT_MARSHAL_BAD_TCKIND, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "ORBUTIL.cannotMarshalBadTckind",
                parameters, ORBUtilSystemException.class, exc ) ;
View Full Code Here

    public static final int INVALID_INDIRECTION = SUNVMCID.value + 241 ;
   
    public MARSHAL invalidIndirection( CompletionStatus cs, Throwable t, Object arg0) {
        MARSHAL exc = new MARSHAL( INVALID_INDIRECTION, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = new Object[1] ;
            parameters[0] = arg0 ;
            doLog( Level.WARNING, "ORBUTIL.invalidIndirection",
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.