NO_RESPONSE.java :  » Collaboration » JacORB » org » omg » CORBA » Java Open Source

Java Open Source » Collaboration » JacORB 
JacORB » org » omg » CORBA » NO_RESPONSE.java
/***** Copyright (c) 1999 Object Management Group. Unlimited rights to 
       duplicate and use this code are hereby granted provided that this 
       copyright notice is included.
*****/

package org.omg.CORBA;

public class NO_RESPONSE extends org.omg.CORBA.SystemException {

    public NO_RESPONSE() {
        super(null, 0, CompletionStatus.COMPLETED_NO);
    }

    public NO_RESPONSE(int minor, CompletionStatus completed) {
        super(null, minor, completed);
    }

    public NO_RESPONSE(String reason) {
        super(reason, 0, CompletionStatus.COMPLETED_NO);
    }

    public NO_RESPONSE(String reason, int minor, CompletionStatus completed) {
        super(reason, minor, completed);
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.