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
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
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