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

com.whl.quickjs.wrapper.QuickJSException Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package com.whl.quickjs.wrapper;

/**
 * Created by Harlon Wang on 2022/2/8.
 */
public class QuickJSException extends RuntimeException {

    private final boolean jsError;

    public QuickJSException(String message) {
        this(message, false);
    }

    public QuickJSException(String message, boolean jsError) {
        super(message);
        this.jsError = jsError;
    }

    public boolean isJSError() {
        return jsError;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy