You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
376 B
13 lines
376 B
import { BaseError } from './base.js'
|
|
|
|
export type InvalidDecimalNumberErrorType = InvalidDecimalNumberError & {
|
|
name: 'InvalidDecimalNumberError'
|
|
}
|
|
export class InvalidDecimalNumberError extends BaseError {
|
|
constructor({ value }: { value: string }) {
|
|
super(`Number \`${value}\` is not a valid decimal number.`, {
|
|
name: 'InvalidDecimalNumberError',
|
|
})
|
|
}
|
|
}
|