VerIDError constructor

VerIDError(
  1. [String pdomain,
  2. num pcode,
  3. String pdescription]
)

Implementation

VerIDError([String pdomain, num pcode, String pdescription]) {
  if (pdomain != null) {
    this.domain = pdomain;
  }

  if (pcode != null) {
    this.code = pcode;
  }

  if (pdescription != null) {
    this.description = pdescription;
  }
}