com.sun.identity.plugin.datastore
クラス DataStoreProviderException

java.lang.Object
  上位を拡張 java.lang.Throwable
      上位を拡張 java.lang.Exception
          上位を拡張 com.sun.identity.shared.locale.L10NMessageImpl
              上位を拡張 com.sun.identity.plugin.datastore.DataStoreProviderException

public class DataStoreProviderException
extends com.sun.identity.shared.locale.L10NMessageImpl

This class is to handle DataStoreProvider related exceptions.

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

コンストラクタの概要
DataStoreProviderException(Exception ex)
          Constructs a DataStoreProviderException with an exception.
DataStoreProviderException(String message)
          Constructs a DataStoreProviderException with a detailed message.
DataStoreProviderException(String rbName, String errorCode, Object[] args)
          Constructs a new DataStoreProviderException without a nested Throwable.
DataStoreProviderException(Throwable rootCause)
          Constructs a DataStoreProviderException with an embedded exception.
 

コンストラクタの詳細

DataStoreProviderException

public DataStoreProviderException(String message)
Constructs a DataStoreProviderException with a detailed message.

パラメータ:
message - Detailed message for this exception.

DataStoreProviderException

public DataStoreProviderException(Throwable rootCause)
Constructs a DataStoreProviderException with an embedded exception.

パラメータ:
rootCause - An embedded exception

DataStoreProviderException

public DataStoreProviderException(Exception ex)
Constructs a DataStoreProviderException with an exception.

パラメータ:
ex - an exception

DataStoreProviderException

public DataStoreProviderException(String rbName,
                                  String errorCode,
                                  Object[] args)
Constructs a new DataStoreProviderException without a nested Throwable.

パラメータ:
rbName - Resource Bundle Name to be used for getting localized error message.
errorCode - Key to resource bundle. You can use
 ResourceBundle rb = ResourceBunde.getBundle (rbName,locale);
 String localizedStr = rb.getString(errorCode);
 
args - arguments to message. If it is not present pass them as null