Package io.csar

Class ConcernNotFoundException

All Implemented Interfaces:
Serializable

public class ConcernNotFoundException extends IllegalStateException
An unchecked illegal state exception to indicate that a particular concern could not be located.
Author:
Garret Wilson
See Also:
  • Constructor Details

    • ConcernNotFoundException

      public ConcernNotFoundException()
      Default constructor with no message.
    • ConcernNotFoundException

      public ConcernNotFoundException(@Nullable String message)
      Message constructor.
      Parameters:
      message - An explanation of why the input could not be parsed, or null if a no message should be used.
    • ConcernNotFoundException

      public ConcernNotFoundException(@Nullable Throwable cause)
      Cause constructor.
      Parameters:
      cause - The cause error or null if the cause is nonexistent or unknown.
    • ConcernNotFoundException

      public ConcernNotFoundException(@Nullable String message, @Nullable Throwable cause)
      Message and cause constructor.
      Parameters:
      message - An explanation of why the input could not be parsed, or null if a no message should be used.
      cause - The cause error or null if the cause is nonexistent or unknown.