com.sun.identity.plugin.log
クラス LogException

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

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

This class is to handle Log related exceptions.

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

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

コンストラクタの詳細

LogException

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

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

LogException

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

パラメータ:
rootCause - An embedded exception

LogException

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

パラメータ:
ex - an exception

LogException

public LogException(String rbName,
                    String errorCode,
                    Object[] args)
Constructs a new LogException 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