interface JsonDeserializable<T : JsonException>
Classes that implements this interface should implement deserialization. See examples in:
Also, see JsonSerializable.
Parameters
abstract fun deserialize(jsonSource: String): T
Performs deserialization. For serialization see JsonSerializable.serialize. |
abstract class JsonException : RuntimeException, JsonSerializable, JsonDeserializable<JsonException>
Parent of all exceptions for server-api. User: Kirill Date: 05.07.13 15:30 |