java - NotImplementedException is internal proprietary API -


i became following warning when try build project ant. build.xml ist auto-generated eclipse:

warning: notimplementedexception internal proprietary api , may removed in future release 

in eclipse there no error @ line , if remove line (are annotation hibernate) error occur in line. seems error comes in first line of java file.

i tried replace hibernate , annotations new version javax persistence. nothing helped.

i hope else has same failure , knows need do.

edit:

@entity @inheritance(strategy=inheritancetype.table_per_class) @table(name="myclass") public class myclass implements cloneable { 

the second row generates warning. if remove row next generate same warning. if remove annotations last line generates warning.

are importing sun.reflect.generics.reflectiveobjects.notimplementedexception somewhere?. sun classes not part of official java api , may changed/removed @ time without notice. apart that, might missing if runs application on different jvm oracle one. example ibm jvm not have access sun classes , therefore program fail @ runtime.


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -