Skip to content

Instantly share code, notes, and snippets.

@robderijk
Created June 6, 2019 09:16
Show Gist options
  • Save robderijk/1ee552ee395de5ee12e441d13d072e29 to your computer and use it in GitHub Desktop.
Save robderijk/1ee552ee395de5ee12e441d13d072e29 to your computer and use it in GitHub Desktop.
open class AppException(
message: String,
cause: Throwable? = null,
val debugContext: Map<String, String>? = null
) : Exception(message, cause)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment