Package oracle.spatial.geometry
Class DataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- oracle.spatial.geometry.DataException
-
- All Implemented Interfaces:
java.io.Serializable
public class DataException extends java.lang.ExceptionReports SDOVIS exception related with map data access. This exception will be thrown when the renderer encounters error when accessing theme or map data. In most cases it nests an SQL exception.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Stringdescriptionjava.lang.Throwabledetail
-
Constructor Summary
Constructors Constructor Description DataException()DataException(java.lang.String message)DataException(java.lang.String message, java.lang.Throwable ex)DataException(java.lang.Throwable ex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprintStackTrace()Prints the composite message toSystem.err.voidprintStackTrace(java.io.PrintStream ps)Prints the composite message and the embedded stack trace to the specified streamps.voidprintStackTrace(java.io.PrintWriter pw)Prints the composite message and the embedded stack trace to the specified print writerpw.java.lang.StringtoString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Throwable
-
printStackTrace
public void printStackTrace(java.io.PrintStream ps)
Prints the composite message and the embedded stack trace to the specified streamps.- Overrides:
printStackTracein classjava.lang.Throwable- Parameters:
ps- the print stream
-
printStackTrace
public void printStackTrace()
Prints the composite message toSystem.err.- Overrides:
printStackTracein classjava.lang.Throwable
-
printStackTrace
public void printStackTrace(java.io.PrintWriter pw)
Prints the composite message and the embedded stack trace to the specified print writerpw.- Overrides:
printStackTracein classjava.lang.Throwable- Parameters:
pw- the print writer
-
-