| Current Path : /home/deltalab/PMS/logistic-backend/node_modules/luxon/src/impl/ |
| Current File : //home/deltalab/PMS/logistic-backend/node_modules/luxon/src/impl/invalid.js |
export default class Invalid {
constructor(reason, explanation) {
this.reason = reason;
this.explanation = explanation;
}
toMessage() {
if (this.explanation) {
return `${this.reason}: ${this.explanation}`;
} else {
return this.reason;
}
}
}