Class TechnicalException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.enterprise.spring.boot.common.exception.TechnicalException
All Implemented Interfaces:
java.io.Serializable

public class TechnicalException
extends java.lang.RuntimeException
There was a technical problem that prevented the operation from completing.
Author:
Malte Geßner
See Also:
Serialized Form
  • Constructor Summary

    Constructors 
    Constructor Description
    TechnicalException​(java.lang.String message)  
    TechnicalException​(java.lang.String code, java.lang.String description)  
    TechnicalException​(java.lang.String code, java.lang.String description, java.lang.Throwable cause)
    message and cause.
    TechnicalException​(java.lang.String message, java.lang.Throwable cause)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getCode()  
    java.lang.String getDescription()  

    Methods inherited from class java.lang.Throwable

    addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • TechnicalException

      public TechnicalException​(java.lang.String code, java.lang.String description, java.lang.Throwable cause)
      message and cause.
      Parameters:
      code - message
      description - description
      cause - cause
    • TechnicalException

      public TechnicalException​(java.lang.String code, java.lang.String description)
    • TechnicalException

      public TechnicalException​(java.lang.String message)
    • TechnicalException

      public TechnicalException​(java.lang.String message, java.lang.Throwable cause)
  • Method Details