Package org.omg.CORBA

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


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


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

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

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

    public static final int INVALID_STREAM_FORMAT_VERSION = OMGVMCID.value + 39 ;
   
    public BAD_PARAM invalidStreamFormatVersion( CompletionStatus cs, Throwable t, Object arg0) {
        BAD_PARAM exc = new BAD_PARAM( INVALID_STREAM_FORMAT_VERSION, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = new Object[1] ;
            parameters[0] = arg0 ;
            doLog( Level.WARNING, "OMG.invalidStreamFormatVersion",
View Full Code Here

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

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

    public static final int NO_POA = SUNVMCID.value + 1402 ;
   
    public BAD_PARAM noPoa( CompletionStatus cs, Throwable t ) {
        BAD_PARAM exc = new BAD_PARAM( NO_POA, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "UTIL.noPoa",
                parameters, UtilSystemException.class, exc ) ;
View Full Code Here

    public static final int CONNECT_WRONG_ORB = SUNVMCID.value + 1403 ;
   
    public BAD_PARAM connectWrongOrb( CompletionStatus cs, Throwable t ) {
        BAD_PARAM exc = new BAD_PARAM( CONNECT_WRONG_ORB, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.FINE )) {
            Object[] parameters = null ;
            doLog( Level.FINE, "UTIL.connectWrongOrb",
                parameters, UtilSystemException.class, exc ) ;
View Full Code Here

    public static final int CONNECT_NO_TIE = SUNVMCID.value + 1404 ;
   
    public BAD_PARAM connectNoTie( CompletionStatus cs, Throwable t ) {
        BAD_PARAM exc = new BAD_PARAM( CONNECT_NO_TIE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "UTIL.connectNoTie",
                parameters, UtilSystemException.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.