You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.1 KiB
58 lines
1.1 KiB
/*
|
|
* Copyright (c) 1995, 2006, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package org.omg.CORBA;
|
|
|
|
/**
|
|
* The root class for CORBA IDL-defined user exceptions.
|
|
* All CORBA user exceptions are checked exceptions, which
|
|
* means that they need to
|
|
* be declared in method signatures.
|
|
*
|
|
* @see <A href="../../../../technotes/guides/idl/jidlExceptions.html">documentation on
|
|
* Java IDL exceptions</A>
|
|
*/
|
|
public abstract class UserException extends java.lang.Exception implements org.omg.CORBA.portable.IDLEntity {
|
|
|
|
/**
|
|
* Constructs a <code>UserException</code> object.
|
|
* This method is called only by subclasses.
|
|
*/
|
|
protected UserException() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs a <code>UserException</code> object with a
|
|
* detail message. This method is called only by subclasses.
|
|
*
|
|
* @param reason a <code>String</code> object giving the reason for this
|
|
* exception
|
|
*/
|
|
protected UserException(String reason) {
|
|
super(reason);
|
|
}
|
|
}
|