public class

DetailedSemanticException

extends SemanticException
java.lang.Object
   ↳ SemanticException
     ↳ org.hibernate.hql.ast.DetailedSemanticException

Class Overview

Thrown 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.).

Summary

Public Constructors
DetailedSemanticException(String message)
DetailedSemanticException(String s, Throwable e)
Public Methods
void printStackTrace(PrintWriter w)
Prints this throwable and its backtrace to the specified print writer.
void printStackTrace(PrintStream s)
Prints a stack trace to the specified print stream.
void printStackTrace()
Prints a stack trace.
String toString()
Converts everything to a string.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public DetailedSemanticException (String message)

public DetailedSemanticException (String s, Throwable e)

Public Methods

public void printStackTrace (PrintWriter w)

Prints this throwable and its backtrace to the specified print writer.

Parameters
w the print writer.s

public void printStackTrace (PrintStream s)

Prints a stack trace to the specified print stream.

Parameters
s the print stream.

public void printStackTrace ()

Prints a stack trace.

public String toString ()

Converts everything to a string.

Returns
  • a string.