Your IP : 216.73.217.13


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/luxon/src/impl/
Upload File :
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;
    }
  }
}