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

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

The newest version!
// @flow

class ParsingError extends Error {
    key: string;
    message: string;
    constructor(key: string, message: string) {
        super(message);
        this.message = message;
        this.key = key;
    }
}

export default ParsingError;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy