interface JsonSerializable
Classes that implements this interface should implement serialization. See examples in:
Also, see JsonDeserializable.
abstract fun serialize(): String
Performs serialization. For deserialization 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 |