JAF 1.0

javax.activation
クラス UnsupportedDataTypeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--javax.activation.UnsupportedDataTypeException

public class UnsupportedDataTypeException
extends java.io.IOException

要求された操作が要求されたデータタイプをサポートしていないことを 示すクラスです。

関連項目:
DataHandler, 直列化された形式

コンストラクタの概要
UnsupportedDataTypeException()
          詳細メッセージを持たない UnsupportedDataTypeException を生成します。
UnsupportedDataTypeException(java.lang.String s)
          指定した詳細メッセージを持つ UnsupportedDataTypeException を生成します。
 
クラス java.lang.Throwable から継承したメソッド
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

UnsupportedDataTypeException

public UnsupportedDataTypeException()
詳細メッセージを持たない UnsupportedDataTypeException を生成します。

UnsupportedDataTypeException

public UnsupportedDataTypeException(java.lang.String s)
指定した詳細メッセージを持つ UnsupportedDataTypeException を生成します。
パラメータ:
s - 詳細メッセージ。

JAF 1.0