ApplicationException

Defines a base class used to define various application exceptions.

Implements: Exception

Description

The ApplicationException class defines a base class used to define various application exceptions.

Important points

  • Most languages have their own definition of base exception (error) types. However, this class is implemented symmetrically in all languages supported by the PipServices toolkit and allows to create portable implementations and support proper error propagation in microservices calls.
  • Error propagation means that when a microservice implemented in one language calls a microservice(s) implemented in a different language(s), errors are returned throught the entire call chain and restored in their original (or close) type.
  • Since the number of potential exception types is endless, the PipServices toolkit supports only 12 standard categories of exceptions, which are defined in ErrorCategory. The ApplicationException class acts as a basis for these 12 standard exception types.
  • Most exceptions use a free-form message that describes occured errors. However, this may not be sufficient to create meaninful error descriptions. Therefore, the ApplicationException class proposes an extended error definition that has more standard fields:
    • message: human-readable error description
    • category: one of the 12 standard error categories
    • status: numeric HTTP status code for REST invocations
    • code: unique error code, usually defined as “MY_ERROR_CODE”
    • correlation_id: unique transaction id used to trace execution through a call chain
    • details: map with error parameters that can help to recreate meaningful error description in other languages
    • stack_trace: stack trace
    • cause: original error that is wrapped by this exception
  • The ApplicationException class is not serializable. To pass errors through the wire it must be converted into a ErrorDescription object and then restored on the receiving end into an identical exception type.

Constructors

Creates a new instance of ApplicationException and assigns its values.

ApplicationException([String? category, String? correlation_id, String? code, String? message])

  • category: String? - (optional) standard error category. Default: Unknown
  • correlation_id: String? - (optional) unique transaction id used to trace execution through the call chain.
  • code: String? - (optional) unique error code. Default: “UNKNOWN”
  • message: String? - (optional) human-readable description of the error.

Fields

message

Human-readable error description (usually written in English).

message: String?

category

Standard error category.

category: String

status

HTTP status code associated with this error type.

status: int = 500

code

Unique error code.

code: String = ‘UNKNOWN’

details

Map with additional details that can be used to restore error descriptions in other languages.

details: StringValueMap?

correlation_id

Unique transaction id used to trace execution through a call chain.

correlation_id: String?

stack_trace

Stack trace of the exception.

stack_trace: String?

cause

Original error wrapped by this exception.

cause: String?

Instance methods

getCauseString

Gets the original error wrapped by this exception as a string message.

String? getCauseString()

  • returns: String? - original error message.

getStackTraceString

Gets a stack trace where this exception occured.

String? getStackTraceString()

  • returns: String? - stack trace as a string.

setCauseString

Sets original error wrapped by this exception as a string message.

void setCauseString(String value)

  • value: String - original error message.

setStackTraceString

Sets the stack trace where this exception occurred.

void setStackTraceString(String value)

  • value: String - stack trace as a string

withCause

Sets a original error wrapped by this exception This method returns a reference to this exception to implement the Builder pattern to chain additional calls.

ApplicationException withCause(cause)

withCode

Sets a unique error code.
This method returns a reference to this exception used to implement the Builder pattern to chain additional calls.

ApplicationException withCode(String code)

withCorrelationId

Sets a correlation id which can be used to trace this error through a call chain.
This method returns a reference to this exception to implement the Builder pattern to chain additional calls.

ApplicationException withCorrelationId(String? correlationId)

  • correlationId: String? - unique transaction id used to trace error through a call chain.
  • returns: ApplicationException - exception object

withDetails

Sets a parameter for additional error details. This details can be used to restore error descriptions in other languages.

This method returns a reference to this exception to implement the Builder pattern to chain additional calls.

ApplicationException withDetails(String key, value)

  • key: String - key to the details parameter name
  • value: dynamic - value of the details parameter name
  • returns: ApplicationException - exception object

withStackTrace

Sets a stack trace for this error.
This method returns a reference to this exception to implement the Builder pattern to chain additional calls

ApplicationException withStackTrace(String stackTrace)

  • stackTrace: String - stack trace where this error occured.
  • returns: ApplicationException - exception object.

withStatus

Sets a HTTP status code which shall be returned by REST calls. This method returns a reference to this exception to implement the Builder pattern to chain additional calls.

ApplicationException withStatus(int status)

wrap

Wraps another exception into an application exception object.

If original exception is of ApplicationException type, it is returned without changes. Otherwise, a new ApplicationException object is created and the original error is set as its cause.

ApplicationException wrap(cause)

  • cause: dynamic - original error object
  • returns: ApplicationException - original or newly created ApplicationException object.

Static methods

unwrapError

Unwraps an original exception through wrapped exception objects.

Many frameworks like Seneca or Restify wrap original exceptions. That may result in propagating less specific errors and can hide the causes of the errors.

static dynamic unwrapError(error)

  • error: dynamic - error object
  • returns: dynamic - original error object.

wrapError

Wraps another exception into a specified application exception object.

If the original exception is of ApplicationException type, it is returned without changes. Otherwise, the original error is set as a cause for the specified ApplicationException object.

static ApplicationException wrapError(ApplicationException error, cause)

  • error: ApplicationException - ApplicationException object used to wrap the cause.
  • cause: dynamic - original error object.
  • returns: ApplicationException - original or newly created ApplicationException object.

See also