@guarani/jose
Version:
Implementation of the RFCs of the JOSE Working Group.
11 lines (10 loc) • 314 B
TypeScript
import { JoseException } from './jose.exception';
/**
* Raised when the provided algorithm in not supported.
*/
export declare class UnsupportedAlgorithmException extends JoseException {
/**
* Returns the default Error Message of the JOSE Exception.
*/
protected getDefaultMessage(): string;
}