ofx4js
Version:
A javascript OFX library, ported from OFX4J
11 lines (10 loc) • 323 B
TypeScript
import { Status } from './domain/data/common/Status';
import { OFXException } from './OFXException';
/**
* Exception based on a StatusCode response
*/
export declare class OFXStatusException extends OFXException {
private status;
constructor(status: Status, message: string);
getStatus(): Status;
}