All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jangaroo-runtime.2.0.19.source-code.DefinitionError.as Maven / Gradle / Ivy

There is a newer version: 4.1.8
Show newest version
package {

/**
 * The DefinitionError class represents an error that occurs when user code attempts to define an identifier that is already defined. This error commonly occurs in redefining classes, interfaces, and functions.
 */
public dynamic class DefinitionError extends Error {
  /**
   * Creates a new DefinitionError object.
   * @param message A string associated with the error.
   */
  public function DefinitionError(message:String = "") {
    super(message);
  }
}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy