reasonerclashexception.java
来自「jena2.5.4推理机系统的一种最基本实现 HP实验室出品」· Java 代码 · 共 23 行
JAVA
23 行
/*
(c) Copyright 2006, 2007 Hewlett-Packard Development Company, LP
All rights reserved.
$Id: ReasonerClashException.java,v 1.3 2007/03/07 15:54:24 chris-dollin Exp $
*/
package com.hp.hpl.jena.assembler.exceptions;
import com.hp.hpl.jena.rdf.model.Resource;
/**
Exception to throw when a reasoner [or factory] has multiple clashing
descriptions.
@author kers
*/
public class ReasonerClashException extends AssemblerException
{
public ReasonerClashException( Resource root )
{ super( root, "root has both reasonerFactory and reasonerURL properties" ); }
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?