mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-05-05 02:27:13 +02:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
42 lines
1000 B
C++
42 lines
1000 B
C++
//
|
|
// JWTException.h
|
|
//
|
|
// Library: JWT
|
|
// Package: JWT
|
|
// Module: JWTException
|
|
//
|
|
// Definition of the JWTException class.
|
|
//
|
|
// Copyright (c) 2019, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef JWT_JWTException_INCLUDED
|
|
#define JWT_JWTException_INCLUDED
|
|
|
|
|
|
#include "Poco/JWT/JWT.h"
|
|
#include "Poco/Exception.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace JWT {
|
|
|
|
|
|
POCO_DECLARE_EXCEPTION(JWT_API, JWTException, Poco::Exception)
|
|
POCO_DECLARE_EXCEPTION(JWT_API, ParseException, JWTException)
|
|
POCO_DECLARE_EXCEPTION(JWT_API, UnsupportedAlgorithmException, JWTException)
|
|
POCO_DECLARE_EXCEPTION(JWT_API, UnallowedAlgorithmException, JWTException)
|
|
POCO_DECLARE_EXCEPTION(JWT_API, SignatureException, JWTException)
|
|
POCO_DECLARE_EXCEPTION(JWT_API, SignatureVerificationException, SignatureException)
|
|
POCO_DECLARE_EXCEPTION(JWT_API, SignatureGenerationException, SignatureException)
|
|
|
|
|
|
} } // namespace Poco::JWT
|
|
|
|
|
|
#endif // JWT_JWTException_INCLUDED
|