Package nablarch.fw.results
Class Conflicted
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
nablarch.fw.Result.Error
nablarch.fw.Result.ClientError
nablarch.fw.results.Conflicted
- All Implemented Interfaces:
Serializable
,Result
- Direct Known Subclasses:
SessionConcurrentAccessHandler.SessionConfliction
要求された処理が既に行われた(もしくは並行して実行されている)
処理の結果と競合しているため、処理を継続することができないことを示す例外。
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface nablarch.fw.Result
Result.ClientError, Result.Error, Result.MultiStatus, Result.NotFound, Result.Success
-
Constructor Summary
ConstructorDescriptionデフォルトコンストラクタConflicted
(String message) コンストラクタConflicted
(String message, Throwable cause) コンストラクタConflicted
(Throwable cause) コンストラクタ -
Method Summary
Methods inherited from class nablarch.fw.Result.Error
isSuccess, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface nablarch.fw.Result
getMessage
-
Constructor Details
-
Conflicted
public Conflicted()デフォルトコンストラクタ -
Conflicted
コンストラクタ- Parameters:
message
- エラーメッセージ
-
Conflicted
コンストラクタ- Parameters:
cause
- 起因となる例外
-
Conflicted
コンストラクタ- Parameters:
message
- エラーメッセージcause
- 起因となる例外
-
-
Method Details
-
getStatusCode
public int getStatusCode()ステータスコードを返す。- Specified by:
getStatusCode
in interfaceResult
- Overrides:
getStatusCode
in classResult.ClientError
- Returns:
- ステータスコード
-