D4rtException constructor

D4rtException(
  1. String message
)

Creates a D4rtException and registers it with the ErrorReporter.

Implementation

D4rtException(this.message) {
  ErrorReporter.reportError(this);
}