ServiceException

open class ServiceException(message: String? = null, cause: Throwable? = null) : Exception

A generic exception representing any error in Kraken or the Metron service.

This exception serves as the base class for all service-related exceptions within the Kraken library.

Parameters

message

An optional message describing the exception.

cause

An optional cause that triggered this exception.

Inheritors

Constructors

Link copied to clipboard
constructor(message: String? = null, cause: Throwable? = null)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?