UNPKG

@bramkortooms/sectester-scan

Version:

The package defines a simple public API to manage scans and their expectations.

7 lines (6 loc) 266 B
import { ScanExceptionCode } from './ScanExceptionCode'; import { SecTesterError } from '@sectester/core'; export declare abstract class ScanException extends SecTesterError { abstract get type(): ScanExceptionCode; protected constructor(message: string); }