import { StandardizedErrorCode } from './standardized-error-code';

/** @deprecated Please Use Runtime Errors */
export class DetailedError {
  standardized_error_code!: StandardizedErrorCode;
  external_error_code?: string;
  message?: string;
  external_http_status_code?: number;
  raw_external_context?: string;
}
