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

package.src.style-spec.expression.runtime_error.js Maven / Gradle / Ivy

The newest version!
// @flow

class RuntimeError {
    name: string;
    message: string;

    constructor(message: string) {
        this.name = 'ExpressionEvaluationError';
        this.message = message;
    }

    toJSON() {
        return this.message;
    }
}

export default RuntimeError;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy