import { DomainError } from '../../error/DomainError'; /** * Defines a custom error for invalid run modes. * * @internal */ export class InvalidRunMode extends DomainError { /** * Constructs a new error for invalid run modes. * * @param runMode - the value of the invalid runMode. */ constructor(runMode: string) { super(`Invalid value provided for "runMode": "${runMode}"`); } }