main.com.saadahmedev.base.exception.ApiException.kt Maven / Gradle / Ivy
Go to download
Base Spring Boot service is created to simplify code base and gives a lot of boilerplate codes
package com.saadahmedev.base.exception
import java.lang.Exception
class ApiException : RuntimeException {
constructor() : super()
constructor(message: String) : super(message)
constructor(message: String, cause: Throwable) : super(message, cause)
constructor(cause: Throwable) : super(cause)
constructor(exception: Exception) : super(exception.message ?: "Unexpected error occurred")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy