- 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の新しいインスタンスを構築します。OperationNotSupportedException(String explanation)
説明を使用して、OperationNotSupportedExceptionの新しいインスタンスを構築します。
-
メソッドのサマリー
-
クラス javax.naming.NamingExceptionで宣言されたメソッド
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
-
クラス java.lang.Objectで宣言されたメソッド
clone、equals、finalize、getClass、hashCode、notify、notifyAll、wait、wait、wait
-
クラス java.lang.Throwableで宣言されたメソッド
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
コンストラクタの詳細
-
OperationNotSupportedException
public OperationNotSupportedException()
OperationNotSupportedExceptionの新しいインスタンスを構築します。 フィールドのデフォルトはすべてnullになります。
-
OperationNotSupportedException
public OperationNotSupportedException(String explanation)
説明を使用して、OperationNotSupportedExceptionの新しいインスタンスを構築します。 ほかのフィールドのデフォルトはすべてnullになります。- パラメータ:
explanation
- この例外に関するnullの可能性がある追加の詳細情報- 関連項目:
Throwable.getMessage()
-
-