All Downloads are FREE. Search and download functionalities are using the official Maven repository.

helpers.CodedException.kt Maven / Gradle / Ivy

The newest version!
package com.hexagonkt.helpers

/**
 * Exception with a numeric code.
 *
 * [TODO](https://github.com/hexagonkt/hexagon/issues/271).
 *
 * @property code .
 * @property message .
 * @property cause .
 */
class CodedException (val code: Int, message: String = "", cause: Throwable? = null) :
    RuntimeException (message, cause)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy