Package org.omg.CORBA

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


    public static final int INVALID_INDIRECTION = SUNVMCID.value + 1403 ;
   
    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, "UTIL.invalidIndirection",
View Full Code Here


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

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

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

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

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

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

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

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

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