@guarani/jose
Version:
Implementation of the RFCs of the JOSE Working Group.
11 lines (10 loc) • 341 B
TypeScript
import { JoseException } from './jose.exception';
/**
* Raised when the requested JSON Web Key is not registered at the JSON Web Key Set.
*/
export declare class JsonWebKeyNotFoundException extends JoseException {
/**
* Returns the default Error Message of the JOSE Exception.
*/
protected getDefaultMessage(): string;
}