Package com.impossibl.postgres.api.jdbc
Interface PGSQLExceptionInfo
-
- All Known Implementing Classes:
PGSQLIntegrityConstraintViolationException
,PGSQLSimpleException
public interface PGSQLExceptionInfo
Driver specific interface for exceptions that carry extended error information reported by the server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getColumn()
String
getConstraint()
String
getDatatype()
String
getDetail()
String
getSchema()
String
getTable()
void
setColumn(String column)
void
setConstraint(String constraint)
void
setDatatype(String datatype)
void
setDetail(String details)
void
setSchema(String schema)
void
setTable(String table)
-
-
-
Method Detail
-
getSchema
String getSchema()
-
setSchema
void setSchema(String schema)
-
getTable
String getTable()
-
setTable
void setTable(String table)
-
getColumn
String getColumn()
-
setColumn
void setColumn(String column)
-
getDatatype
String getDatatype()
-
setDatatype
void setDatatype(String datatype)
-
getConstraint
String getConstraint()
-
setConstraint
void setConstraint(String constraint)
-
getDetail
String getDetail()
-
setDetail
void setDetail(String details)
-
-