java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.naming.NamingException
javax.naming.OperationNotSupportedException
- すべての実装されたインタフェース:
- Serializable
public class OperationNotSupportedException extends NamingException
コンテキスト実装が呼び出された操作をサポートしない場合に、この例外はスローされます。 たとえば、サーバーがContext.bind()メソッドをサポートしない場合は、bind()メソッドを呼び出すとOperationNotSupportedExceptionがスローされます。 
 
NamingExceptionに適用される同期および直列化は、ここで直接適用されます。
- 導入されたバージョン:
- 1.3
- 関連項目:
- 
フィールドのサマリークラス javax.naming.NamingExceptionで宣言されたフィールドremainingName, resolvedName, resolvedObj, rootException
- 
コンストラクタのサマリーコンストラクタコンストラクタ説明OperationNotSupportedExceptionの新しいインスタンスを構築します。OperationNotSupportedException(String explanation) 説明を使用して、OperationNotSupportedExceptionの新しいインスタンスを構築します。
- 
メソッドのサマリークラス javax.naming.NamingExceptionで宣言されたメソッドappendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toStringクラス java.lang.Throwableで宣言されたメソッドaddSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
- 
コンストラクタの詳細- 
OperationNotSupportedExceptionpublic OperationNotSupportedException()OperationNotSupportedExceptionの新しいインスタンスを構築します。 フィールドのデフォルトはすべてnullになります。
- 
OperationNotSupportedExceptionpublic OperationNotSupportedException(String explanation) 説明を使用して、OperationNotSupportedExceptionの新しいインスタンスを構築します。 ほかのフィールドのデフォルトはすべてnullになります。- パラメータ:
- explanation- この例外に関するnullの可能性がある追加の詳細情報
- 関連項目:
 
 
-