当前位置: 首页>>代码示例>>Java>>正文


Java GroovyRuntimeException.getMessage方法代码示例

本文整理汇总了Java中groovy.lang.GroovyRuntimeException.getMessage方法的典型用法代码示例。如果您正苦于以下问题:Java GroovyRuntimeException.getMessage方法的具体用法?Java GroovyRuntimeException.getMessage怎么用?Java GroovyRuntimeException.getMessage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在groovy.lang.GroovyRuntimeException的用法示例。


在下文中一共展示了GroovyRuntimeException.getMessage方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: asType

import groovy.lang.GroovyRuntimeException; //导入方法依赖的package包/类
/**
 * Coerces this map to the given type, using the map's keys as the public
 * method names, and values as the implementation.  Typically the value
 * would be a closure which behaves like the method implementation.
 *
 * @param map   this map
 * @param clazz the target type
 * @return a Proxy of the given type, which defers calls to this map's elements.
 * @since 1.0
 */
@SuppressWarnings("unchecked")
public static <T> T asType(Map map, Class<T> clazz) {
    if (!(clazz.isInstance(map)) && clazz.isInterface() && !Traits.isTrait(clazz)) {
        return (T) Proxy.newProxyInstance(
                clazz.getClassLoader(),
                new Class[]{clazz},
                new ConvertedMap(map));
    }
    try {
        return asType((Object) map, clazz);
    } catch (GroovyCastException ce) {
        try {
            return (T) ProxyGenerator.INSTANCE.instantiateAggregateFromBaseClass(map, clazz);
        } catch (GroovyRuntimeException cause) {
            throw new GroovyCastException("Error casting map to " + clazz.getName() +
                    ", Reason: " + cause.getMessage());
        }
    }
}
 
开发者ID:apache,项目名称:groovy,代码行数:30,代码来源:DefaultGroovyMethods.java

示例2: fromGroovyException

import groovy.lang.GroovyRuntimeException; //导入方法依赖的package包/类
public static ScriptError fromGroovyException(GroovyRuntimeException e, String scriptName) {
    Objects.requireNonNull(scriptName);
    for (StackTraceElement element : e.getStackTrace()) {
        if (scriptName.equals(element.getFileName())
                && scriptName.equals(element.getClassName())
                && "run".equals(element.getMethodName())) {
            return new ScriptError(e.getMessage(), element.getLineNumber(), -1, element.getLineNumber(), -1);
        }
    }
    return null;
}
 
开发者ID:powsybl,项目名称:powsybl-core,代码行数:12,代码来源:ScriptError.java

示例3: evaluateInput

import groovy.lang.GroovyRuntimeException; //导入方法依赖的package包/类
private Object evaluateInput(final String expression) {
    try {
        return new GroovyShell(CONSOLE_BINDING, ConsoleScriptHelper.getCompilerConfiguration()).evaluate(expression);
    } catch (final GroovyRuntimeException exception) {
        LOGGER.error(String.format("Error while evaluating [%s]", expression), exception);
        return exception.getMessage();
    }
}
 
开发者ID:klaushauschild1984,项目名称:ff7rl,代码行数:9,代码来源:Console.java


注:本文中的groovy.lang.GroovyRuntimeException.getMessage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。