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

com.virtusa.gto.nyql.engine.exceptions.NyScriptExecutionException.groovy Maven / Gradle / Ivy

package com.virtusa.gto.nyql.engine.exceptions

import com.virtusa.gto.nyql.exceptions.NyException
import groovy.transform.CompileStatic

/**
 * @author IWEERARATHNA
 */
@CompileStatic
class NyScriptExecutionException extends NyException {

    NyScriptExecutionException(String message) {
        super(message)
    }

    NyScriptExecutionException(String message, Throwable cause) {
        super(message, cause)
    }

    NyScriptExecutionException(String scriptId, String file, Throwable inner) {
        super("Query script cannot be parsed due to syntax errors! ['$scriptId', ${file}]", inner)
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy