spring-web-modules/api/src/main/kotlin/com/cubetiqs/web/exception/BaseException.kt

14 lines
500 B
Kotlin

package com.cubetiqs.web.exception
open class BaseException : RuntimeException {
constructor() : super()
constructor(message: String?) : super(message)
constructor(message: String?, cause: Throwable?) : super(message, cause)
constructor(cause: Throwable?) : super(cause)
constructor(message: String?, cause: Throwable?, enableSuppression: Boolean, writableStackTrace: Boolean) : super(
message,
cause,
enableSuppression,
writableStackTrace
)
}