- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中de.tudarmstadt.ukp.wikipedia.api.exception.WikiApiException
类的一些代码示例,展示了WikiApiException
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WikiApiException
类的具体详情如下:
包路径:de.tudarmstadt.ukp.wikipedia.api.exception.WikiApiException
类名称:WikiApiException
暂无
代码示例来源:origin: dkpro/dkpro-jwpl
/**
* Serializes the graph to the given destination.
* @param destination The destination to which should be saved.
* @throws WikiApiException Thrown if errors occurred.
*/
public void saveGraph(String destination) throws WikiApiException {
try {
GraphSerialization.saveGraph(graph, destination);
} catch (IOException e) {
throw new WikiApiException(e);
}
}
private void initializeCategoryGraph() throws LexicalSemanticResourceException {
try {
this.catGraph = CategoryGraphManager.getCategoryGraph(wiki);
} catch (WikiApiException e) {
e.printStackTrace();
throw new LexicalSemanticResourceException("Category graph could not be initialized.",e);
}
}
代码示例来源:origin: dkpro/dkpro-jwpl
result = statement.executeQuery(query);
} catch (WikiApiException wae) {
logger.error(wae.getLocalizedMessage(), wae);
代码示例来源:origin: dkpro/dkpro-jwpl
/**
* Get infos only for a subset of articles.
* @param pPages A set of pages. Only this subset of wiki pages is used in the info object.
*/
public WikipediaInfo(Iterable<Page> pPages) throws WikiApiException {
if (pPages == null) {
throw new WikiApiException("The page set has to be initialized.");
}
pages = pPages;
averageFanOut = -1.0; // lazy initialization => it is computed and stored when it is accessed
degreeDistribution = new HashMap<Integer,Integer>();
categorizedArticleSet = new HashSet<Integer>();
// get number of pages
numberOfPages = 0;
while (pages.iterator().hasNext()) {
numberOfPages++;
pages.iterator().next();
}
}
代码示例来源:origin: dkpro/dkpro-jwpl
e.printStackTrace();
代码示例来源:origin: dkpro/dkpro-jwpl
public int getTaxonomicallyBoundPathLengthInNodes(Category cat1, Category cat2) throws WikiApiException {
int retValue = getTaxonomicallyBoundPathLengthInEdges(cat1, cat2);
if (retValue == 0) {
return 0;
}
else if (retValue > 0) {
return (--retValue);
}
else if (retValue == -1) {
return -1;
}
else {
throw new WikiApiException("Unknown return value.");
}
}
代码示例来源:origin: dkpro/dkpro-jwpl
} catch (WikiApiException e) {
logger.error("Page with hibernateID " + id + " not found.");
e.printStackTrace();
代码示例来源:origin: dkpro/dkpro-jwpl
/**
* Creates an {@link CategoryGraph} using a serialized DirectedGraph object.
* @param pWiki A {@link Wikipedia} object.
* @param location The location of the serialized graph
* @throws WikiApiException Thrown if errors occurred.
*/
public CategoryGraph(Wikipedia pWiki, File location) throws WikiApiException{
try {
constructCategoryGraph(pWiki, GraphSerialization.loadGraph(location));
} catch (IOException e) {
throw new WikiApiException(e);
} catch (ClassNotFoundException e) {
throw new WikiApiException(e);
}
}
代码示例来源:origin: dkpro/dkpro-jwpl
} catch (WikiApiException e) {
System.out.println("Page " + title + " does not exist");
e.printStackTrace();
System.exit(1);
代码示例来源:origin: dkpro/dkpro-jwpl
/**
* Gets the path length between two category nodes - measured in "nodes".
* @param node1 The first node.
* @param node2 The second node.
* @return The number of nodes of the path between node1 and node2. 0, if the nodes are identical or neighbors. -1, if no path exists.
*/
public int getPathLengthInNodes(Category node1, Category node2) throws WikiApiException {
int retValue = getPathLengthInEdges(node1, node2);
if (retValue == 0) {
return 0;
}
else if (retValue > 0) {
return (--retValue);
}
else if (retValue == -1) {
return -1;
}
else {
throw new WikiApiException("Unknown return value.");
}
}
代码示例来源:origin: dkpro/dkpro-jwpl
private static CategoryGraph tryToLoadCategoryGraph(Wikipedia wiki, String wikiId, String size) throws WikiApiException {
String defaultSerializedGraphLocation = getCategoryGraphSerializationFileName(wikiId, size);
File defaulSerializedGraphFile = new File(defaultSerializedGraphLocation);
if (defaulSerializedGraphFile.exists()) {
try {
logger.info("Loading category graph from " + defaultSerializedGraphLocation);
return new CategoryGraph(wiki, GraphSerialization.loadGraph(defaultSerializedGraphLocation));
} catch (IOException e) {
throw new WikiApiException(e);
} catch (ClassNotFoundException e) {
throw new WikiApiException(e);
}
}
else {
return null;
}
}
代码示例来源:origin: de.tudarmstadt.ukp.wikipedia/de.tudarmstadt.ukp.wikipedia.revisionmachine
private Connection getConnection(RevisionAPIConfiguration config)
throws WikiApiException
{
Connection c;
try {
String driverDB = "com.mysql.jdbc.Driver";
Class.forName(driverDB);
c = DriverManager.getConnection(
"jdbc:mysql://" + config.getHost() + "/" + config.getDatabase(),
config.getUser(), config.getPassword());
if (!c.isValid(5)) {
throw new WikiApiException("Connection could not be established.");
}
}
catch (SQLException e) {
throw new WikiApiException(e);
}
catch (ClassNotFoundException e) {
throw new WikiApiException(e);
}
return c;
}
代码示例来源:origin: dkpro/dkpro-jwpl
throw new WikiApiException(e);
代码示例来源:origin: dkpro/dkpro-jwpl
throw new WikiApiException("Page ID must be > 0");
throw new WikiApiException(e);
代码示例来源:origin: dkpro/dkpro-jwpl
throw new WikiApiException("Revision ID must be > 0");
throw new WikiApiException(e);
代码示例来源:origin: de.tudarmstadt.ukp.wikipedia/de.tudarmstadt.ukp.wikipedia.revisionmachine
throw new WikiApiException("Article data is inconsistent");
throw new WikiApiException(e);
代码示例来源:origin: dkpro/dkpro-jwpl
private Connection getConnection(Wikipedia wiki)
throws WikiApiException
{
DatabaseConfiguration config = wiki.getDatabaseConfiguration();
Connection c;
try {
String driverDB = "com.mysql.jdbc.Driver";
Class.forName(driverDB);
c = DriverManager.getConnection("jdbc:mysql://" + config.getHost()
+ "/" + config.getDatabase()+"?autoReconnect=true", config.getUser(),
config.getPassword());
if (!c.isValid(5)) {
throw new WikiApiException(
"Connection could not be established.");
}
}
catch (SQLException e) {
throw new WikiApiException(e);
}
catch (ClassNotFoundException e) {
throw new WikiApiException(e);
}
return c;
}
代码示例来源:origin: dkpro/dkpro-jwpl
throw new WikiApiException("Article data is inconsistent");
throw new WikiApiException(e);
代码示例来源:origin: dkpro/dkpro-jwpl
/**
* Helper method to obtain a connection via the given {@link RevisionAPIConfiguration} parameter.
* @param config Must not be {@code null}.
* @return A valid {@link Connection} to the database endpoint.
* @throws WikiApiException Thrown if errors occurred while opening a connection.
*/
protected Connection getConnection(RevisionAPIConfiguration config) throws WikiApiException
{
Connection c;
try {
String driverDB = config.getDatabaseDriver();
Class.forName(driverDB);
c = DriverManager.getConnection(config.getJdbcURL(), config.getUser(), config.getPassword());
if (!c.isValid(5)) {
throw new WikiApiException("Connection could not be established.");
}
}
catch (SQLException | ClassNotFoundException e) {
throw new WikiApiException(e);
}
return c;
}
代码示例来源:origin: de.tudarmstadt.ukp.wikipedia/de.tudarmstadt.ukp.wikipedia.revisionmachine
throw new WikiApiException(e);
这个问题在这里已经有了答案: Python try...except comma vs 'as' in except (5 个回答) 关闭7年前。 在python中,有两种方法可以捕获异常 excep
在 Java 中,我有一个从 Exception 扩展的异常类,但是每当我抛出它时,编译器都会说它需要被捕获/必须声明方法 throws异常。 当我使用从 Exception 扩展的 RuntimeE
我有一组用户、组以及用户和组之间的映射。我有各种操作这些集合的函数,但是不能为不存在的用户添加用户组映射,也不能删除仍然有用户作为成员的组等。 所以基本上我希望这些函数抛出必须由调用者明确处理的“异常
我正在尝试使用上载控件上载20兆的文件,并且在Visual Studio的内置Web服务器上可以正常工作,但是一旦将其发布到生产服务器(我无权访问),我总是收到以下错误消息: Server Error
我想断言运行某些代码时会引发特定异常(SSLHandshakeException)。 assertThatThrownBy(() -> { // some code }).is
这个问题我暂时解决不了。我很乐意提供一些建议。 当我尝试抛出异常时(我自己创建了一个 Java 风格的异常) throw Exception (); 编译器提出抗议: DataTypes/Date.c
我有以下文件: from fabric.api import env, execute, run env.hosts = ['1.2.3.4'] def taskA(): run('ls')
我正在阅读一些包含类似于以下功能的源代码: def dummy_function(): try: g = 1/0 except Exception as e:
根据标准 ML 的定义(修订版): The idea is that dynamic evaluation of a non-expansive expression will neither gen
当 GHCi 在运行时发现调用产生的值与函数的模式匹配不匹配时,有没有办法让 GHCi 产生更好的异常消息? 它目前给出了产生非详尽模式匹配的函数的行号,虽然有时会有所帮助,但确实需要一轮调试,有时我
我有一个最佳实践问题。我意识到这是主观的,但想问问比我更聪明的人,这是否是一种常见的编程实践。 如果您有一种不希望干扰应用程序重要功能的非关键方法,那么使用这样的错误接收器是否常见? Try
在编程中,异常是否总是错误(被零除,访问冲突等等)? 如果不是,您能否提供不是错误的异常示例? 谢谢。 最佳答案 异常通常用于管理错误,它们使错误处理更加容易,但它们并不总是错误。 任何需要单独代码路
我很想知道 OCaml 运行时如何处理异常以使它们如此轻量。他们是使用 setjmp/longjmp 还是在每个函数中返回一个特殊值并传播它? 在我看来,longjmp会给系统带来一点压力,但只有在引
在我的 C# 代码中,我可以访问 MyNamespace.Exception 以及 System.Exception。当我想捕获其中一个异常时,理想情况下我会完全限定要捕获的异常或使用别名来明确说明。
我正在使用 Visual C++ 2005 Express Edition 并遇到以下链接器错误: 19>mylib1.lib(mylibsource1.obj) : error LNK2019: u
这个问题在这里已经有了答案: Is there "Break on Exception" in IntelliJ? (6 个回答) 关闭7年前。 我想在调试器中运行我的测试套件并中断任何意外异常,但是
Like in this picture 我知道它们都可以正常工作,但我只是想知道它们之间有何不同? PS:我是初学者。 最佳答案 A LogEvent可以同时包含消息和异常。如果您使用第一种形式:
我知道避免 Doctrine 上的异常似乎是一种奇怪的行为,但我需要这样做,因为我在一个旧项目中工作,过去有人执行了一些迁移,然后他决定删除它,所以现在复制起来很复杂本地生产环境没有崩溃,这就是为什么
我想创建一个名为 SecurityException 的新异常。 我应该把代码放在哪里? class SecurityException extends CakeException {}; 谢谢! 最
我一直在使用throw new Exception("...")在我的代码中,因为我找不到其他可以使用的东西。我正在寻找像 C++'s 这样的东西 out_of_range 和 logic_error
我是一名优秀的程序员,十分优秀!