pt.moredata.dao
Class UnknownColumnNameException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended bypt.moredata.dao.UnknownColumnNameException
All Implemented Interfaces:
java.io.Serializable

public class UnknownColumnNameException
extends java.lang.RuntimeException

This is an exception that is thrown whenever a reference is made to a non-existent column name of the DAOFieldsInfo of a DataAccessObject. Company MoreData

Version:
$Revision: 1.2 $
Author:
pcarmo
See Also:
Serialized Form

Constructor Summary
UnknownColumnNameException(java.lang.String columnName)
          Creates a new instance of UnknownColumnNameException
UnknownColumnNameException(java.lang.String tableName, java.lang.String columnName)
          Creates a new instance of UnknownColumnNameException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnknownColumnNameException

public UnknownColumnNameException(java.lang.String columnName)
Creates a new instance of UnknownColumnNameException

Parameters:
columnName - The unknown column name.

UnknownColumnNameException

public UnknownColumnNameException(java.lang.String tableName,
                                  java.lang.String columnName)
Creates a new instance of UnknownColumnNameException

Parameters:
tableName - The tableName.
columnName - The unknown column name.