Class ExceptionSummaryService


  • public class ExceptionSummaryService
    extends java.lang.Object
    Builds an ExceptionSummary object from a given Exception. This object is meant to help provide context to end-users to help resolve issues, while still offering enough detail for operators and developers to trace internal bugs.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      com.netflix.spinnaker.kork.api.exceptions.ExceptionSummary summary​(java.lang.Throwable throwable)  
      com.netflix.spinnaker.kork.api.exceptions.ExceptionSummary summary​(java.lang.Throwable throwable, com.netflix.spinnaker.kork.api.exceptions.ExceptionDetails exceptionDetails)
      Provides the ExceptionSummary given the thrown exception.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • summary

        public com.netflix.spinnaker.kork.api.exceptions.ExceptionSummary summary​(java.lang.Throwable throwable,
                                                                                  @Nullable
                                                                                  com.netflix.spinnaker.kork.api.exceptions.ExceptionDetails exceptionDetails)
        Provides the ExceptionSummary given the thrown exception.
        Parameters:
        throwable - Throwable
        Returns:
        ExceptionSummary
      • summary

        public com.netflix.spinnaker.kork.api.exceptions.ExceptionSummary summary​(java.lang.Throwable throwable)