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

br.com.guiabolso.events.exception.EventException.kt Maven / Gradle / Ivy

There is a newer version: 8.0.4
Show newest version
package br.com.guiabolso.events.exception

import br.com.guiabolso.events.model.EventErrorType

open class EventException(
    val code: String,
    val parameters: Map,
    val type: EventErrorType = EventErrorType.Generic,
    cause: Throwable? = null,
    val expected: Boolean = false
) : RuntimeException(code, cause)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy