trufflesuite/truffle

View on GitHub
packages/codec-components/src/utils/custom-errors.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class ComponentDataTypeIsNeverError extends Error {
  constructor(dataType: string) {
    super(
      `${dataType} is of type \`never\`. The corresponding component should not be used.`
    );
    this.name = "ComponentDataTypeIsNeverError";
  }
}