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

ba.sake.sharaf.exceptions.package.scala Maven / Gradle / Ivy

package ba.sake.sharaf.exceptions

sealed class SharafException(msg: String, cause: Exception = null) extends Exception(msg, cause)

final class NotFoundException(val resource: String) extends SharafException(s"$resource not found")

final class RequestHandlingException(cause: Exception) extends SharafException("Request handling error", cause)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy