Files
kotlin-fork/server/src/main/java/InvalidProtocolBufferException.kt
T
MaximZaitsev f73b26a4e2 moved src
2016-07-26 11:14:45 +03:00

10 lines
212 B
Kotlin

/**
* Created by user on 7/7/16.
*/
class InvalidProtocolBufferException(
override val message: String? = null,
override val cause : Throwable? = null
) : Throwable(message, cause) {
}