/** * @module Messages/HTTP/SSLCertificateError * @desc Export the SSLCertificateError http message class. * * @requires {@link https://github.com/Itee/itee-validators itee-validators} * @requires module:Messages/HTTP/AbstractHTTPError~AbstractHTTPError * * @author [Tristan Valcke]{@link https://github.com/Itee} * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause} */ import { AbstractHTTPError } from './AbstractHTTPError' /** * @class * @classdesc The UnprocessableEntityError is the error class for this kind of error. * It extend is AbstractHTTPError and fix his status code. * * @extends module:Messages/HTTP/AbstractHTTPError~AbstractHTTPError */ class SSLCertificateError extends AbstractHTTPError { /** * The static statusCode getter reimplementation for this kind of error, will return 495 * @see module:Messages/HTTP/AbstractHTTPError~AbstractHTTPError#statusCode * @static * @constant * @default 422 * @type {number} */ static get statusCode () { return 495 } /** * A boolean based on classname that allow fast type checking, will ever be true * @constant * @default true * @type {boolean} */ get isSSLCertificateError () { return true } } export { SSLCertificateError }