xsolla
Version:
A Node.js client for working with the Xsolla Merchant API
20 lines (15 loc) • 456 B
text/typescript
import XsollaException, { XsollaExceptionCode } from './XsollaException';
export default class InvalidSignatureException extends XsollaException {
/**
* Xsolla Exception Code.
*/
public name: XsollaExceptionCode = 'INVALID_SIGNATURE';
/**
* Error message.
*/
public message = 'Invalid signature.';
/**
* HTTP response code for this exception.
*/
public httpResponseCode = 403;
}