ChecksumException.d.ts 234 B

123456789
  1. import Exception from './Exception';
  2. /**
  3. * Custom Error class of type Exception.
  4. */
  5. export default class ChecksumException extends Exception {
  6. static readonly kind: string;
  7. static getChecksumInstance(): ChecksumException;
  8. }