Class JwtReconstructionException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InvalidJwtException, UnrecognizedCriticalHeaderException

public class JwtReconstructionException extends JwtBuilderException
Represents an exception that occurs when reconstructing JWTs.
Since:
2.0.0
See Also:
  • Constructor Details

    • JwtReconstructionException

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

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

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