gpt4 book ai didi

play.exceptions.YAMLException.()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 13:04:20 28 4
gpt4 key购买 nike

本文整理了Java中play.exceptions.YAMLException.<init>()方法的一些代码示例,展示了YAMLException.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAMLException.<init>()方法的具体详情如下:
包路径:play.exceptions.YAMLException
类名称:YAMLException
方法名:<init>

YAMLException.<init>介绍

暂无

代码示例

代码示例来源:origin: com.google.code.maven-play-plugin.org.playframework/play

@SuppressWarnings("unchecked")
public static <T> T loadYaml(String name, Yaml yaml) {
  VirtualFile yamlFile = null;
  try {
    for (VirtualFile vf : Play.javaPath) {
      yamlFile = vf.child(name);
      if (yamlFile != null && yamlFile.exists() && !yamlFile.isDirectory()) {
        break;
      }
    }
    InputStream is = Play.classloader.getResourceAsStream(name);
    if (is == null) {
      throw new RuntimeException("Cannot load fixture " + name + ", the file was not found");
    }
    Object o = yaml.load(is);
    return (T) o;
  } catch (ScannerException e) {
    throw new YAMLException(e, yamlFile);
  } catch (Throwable e) {
    throw new RuntimeException("Cannot load fixture " + name + ": " + e.getMessage(), e);
  }
}

代码示例来源:origin: BlackLabs/play-morphia

throw new RuntimeException("Class " + e.getMessage() + " was not found", e);
} catch (ScannerException e) {
  throw new YAMLException(e, yamlFile);
} catch (Throwable e) {
  e.printStackTrace();

代码示例来源:origin: com.google.code.maven-play-plugin.org.playframework/play

e);
} catch (ScannerException e) {
  throw new YAMLException(e, yamlFile);
} catch (Throwable e) {
  throw new RuntimeException("Cannot load fixture " + name

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com