class InconsistentDataJsonException : JsonDetailedException
When data sent to the server is in inconsistent state. Exception is packed with unique code as com.srv4pos.server.api.infrastructure.exceptions.enums.InconsistentDataErrorType.
See additional details in InconsistentDataJsonException.getDetails by key 'message'.
InconsistentDataJsonException() InconsistentDataJsonException(message: String) InconsistentDataJsonException(details: Map<String, String>?, code: InconsistentDataErrorType) |
var code: InconsistentDataErrorType? |
|
val message: String |
var details: Map<String, String?>?
Sets exception details. For example, contains exception message or violated value. |
fun deserialize(jsonSource: String): InconsistentDataJsonException
Performs deserialization. For serialization see JsonSerializable.serialize. |
|
fun serialize(): String
Performs serialization. For deserialization see JsonSerializable.serialize. |
open fun toString(): String |