UNPKG

@siren-js/client

Version:
11 lines (10 loc) 251 B
/** * Indicates a `Serializer` does not support the given `type` */ export class UnsupportedSerializerTypeError extends Error { type; constructor(type) { super(`Unable to serialize type '${type}'`); this.type = type; } }