クラス SmlParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.shimizukenta.secs.sml.SmlParseException
- すべての実装されたインタフェース:
java.io.Serializable
- 直系の既知のサブクラス:
SmlDataItemParseException
,SmlNotFoundEndPeriodException
,SmlParseFunctionOutOfRangeException
,SmlParseStreamOutOfRangeException
public class SmlParseException
extends java.lang.Exception
Parse SML Exception.
- 関連項目:
- 直列化された形式
-
コンストラクタの概要
コンストラクタ コンストラクタ 説明 SmlParseException()
Constructor.SmlParseException(java.lang.String message)
Constructor.SmlParseException(java.lang.String message, java.lang.Throwable cause)
Constructor.SmlParseException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Constructor.SmlParseException(java.lang.Throwable cause)
Constructor. -
メソッドの概要
クラスから継承されたメソッド java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
クラスから継承されたメソッド java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
コンストラクタの詳細
-
SmlParseException
public SmlParseException()Constructor. -
SmlParseException
public SmlParseException(java.lang.String message)Constructor.- パラメータ:
message
- the message
-
SmlParseException
public SmlParseException(java.lang.Throwable cause)Constructor.- パラメータ:
cause
- the cause
-
SmlParseException
public SmlParseException(java.lang.String message, java.lang.Throwable cause)Constructor.- パラメータ:
message
- the messagecause
- the cause
-
SmlParseException
public SmlParseException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)Constructor.- パラメータ:
message
- the detail message.cause
- the cause. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)enableSuppression
- whether or not suppression is enabled or disabledwritableStackTrace
- whether or not the stack trace should be writable
-