Could you post the code for the class you are trying to instantiate and tell us what type of column is c300.tra_matric?
This is probably due to a couple of probable causes:
- The class is not available to hibernate's classpath
- The class is abstract
- The none of the class's constructors takes the argument types you are passing, e.g. tra_matric is a date and the constructor only takes an integer
- None of the class's constructors are accessible
- And, just for completeness cause I am sure you have checked and double checked it, the class's name is misspelled
Good Luck