Class JwtBuilderException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JwtReconstructionException

public class JwtBuilderException extends JwtRuntimeException
Represents an exception that occurs when creating/rebuilding JWTs.
Since:
2.0.0
See Also:
  • Constructor Details

    • JwtBuilderException

      public JwtBuilderException(String message)
      Constructs a new JwtBuilderException with the provided exception message.
      Parameters:
      message - The exception message.
    • JwtBuilderException

      public JwtBuilderException(String message, Throwable throwable)
      Constructs a new JwtBuilderException with the provided exception message and underlying throwable.
      Parameters:
      message - The exception message.
      throwable - The underlying throwable.
    • JwtBuilderException

      public JwtBuilderException(Throwable throwable)
      Constructs a new JwtBuilderException with the provided underlying throwable.
      Parameters:
      throwable - The underlying throwable.