@@ -313,7 +313,7 @@ export type GenericErrorConstructor =
313313/**
314314 * An `Error` with a `code` property.
315315 */
316- export type SesError = Error & { code ?: string } ;
316+ export type CodableError = Error & { code ?: string } ;
317317
318318/**
319319 * To make an `assert` which terminates some larger unit of computation
@@ -322,7 +322,7 @@ export type SesError = Error & { code?: string };
322322 * If possible, the callback should also report its `reason` parameter as
323323 * the alleged reason for the termination.
324324 */
325- export type Raise = ( reason : SesError ) => void ;
325+ export type Raise = ( reason : CodableError ) => void ;
326326
327327/**
328328 * Makes and returns an `assert` function object that shares the
@@ -406,13 +406,13 @@ export interface AssertionUtilities {
406406 /** An optional alternate error constructor to use */
407407 errConstructor ?: GenericErrorConstructor ,
408408 options ?: AssertMakeErrorOptions ,
409- ) : SesError ;
409+ ) : CodableError ;
410410
411411 /**
412412 * Associate `details` with `error`, potentially to be logged by an associated
413413 * console for providing extra information about the error.
414414 */
415- note ( error : SesError , details : Details ) : void ;
415+ note ( error : CodableError , details : Details ) : void ;
416416
417417 /**
418418 * Use as a template literal tag to create an opaque {@link DetailsToken} for
0 commit comments