Re: Form Validator java.lang.InstantiationException

2006-12-18 Thread Cyrille37
Ok, I've found my error. my java class was an **abstract** class !! And of course java could not instanciate a abstract class. sorry for the noise. cyrille Cyrille37 a écrit : Shing Hing Man a écrit : Try replacing public DocumentsUploadFileValidator() {} by public DocumentsUploadFileVa

Re: Form Validator java.lang.InstantiationException

2006-12-18 Thread Cyrille37
Shing Hing Man a écrit : Try replacing public DocumentsUploadFileValidator() {} by public DocumentsUploadFileValidator() {super();} Shing Thanks Shing, I did, but it doesn't change. Still have the error. Error initializing validator 'documentsUploadFileValidator' (class tap03.u

Re: Form Validator java.lang.InstantiationException

2006-12-18 Thread Shing Hing Man
Try replacing public DocumentsUploadFileValidator() {} by public DocumentsUploadFileValidator() {super();} Shing --- Cyrille37 <[EMAIL PROTECTED]> wrote: > Hello, > > I'm trying to create a really simple Form field > validator but it fails > and throw an java.lang.InstantiationExcept

Form Validator java.lang.InstantiationException

2006-12-18 Thread Cyrille37
Hello, I'm trying to create a really simple Form field validator but it fails and throw an java.lang.InstantiationException. Since 3 hours I'm looking in TAP's severals examples but I could not find the reason of the exception. Please could you help me to find where is my error ? Thanks Cyrill