类 DetailedSemanticException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- antlr.ANTLRException
-
- antlr.RecognitionException
-
- antlr.SemanticException
-
- org.hibernate.hql.internal.ast.DetailedSemanticException
-
- 所有已实现的接口:
Serializable
public class DetailedSemanticException extends antlr.SemanticExceptionThrown when a call to the underlying Hibernate engine fails, indicating some form of semantic exception (e.g. a class name was not found in the current mappings, etc.).- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 DetailedSemanticException(String message)DetailedSemanticException(String s, Throwable e)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidprintStackTrace()Prints a stack trace.voidprintStackTrace(PrintStream s)Prints a stack trace to the specified print stream.voidprintStackTrace(PrintWriter w)Prints this throwable and its backtrace to the specified print writer.StringtoString()Converts everything to a string.-
从类继承的方法 java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
-
-
-
-
方法详细资料
-
toString
public String toString()
Converts everything to a string.- 覆盖:
toString在类中antlr.RecognitionException- 返回:
- a string.
-
printStackTrace
public void printStackTrace()
Prints a stack trace.- 覆盖:
printStackTrace在类中Throwable
-
printStackTrace
public void printStackTrace(PrintStream s)
Prints a stack trace to the specified print stream.- 覆盖:
printStackTrace在类中Throwable- 参数:
s- the print stream.
-
printStackTrace
public void printStackTrace(PrintWriter w)
Prints this throwable and its backtrace to the specified print writer.- 覆盖:
printStackTrace在类中Throwable- 参数:
w- the print writer.s
-
-