java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    Caused by: java.lang.NoSuchMethodError: org.tmatesoft.svn.core.wc.SVNWCUtil.createDefaultOptions(Z)Lorg/tmatesoft/svn/core/internal/wc/DefaultSVNOptions;
    at com.hcl.hips.idsclasses.CVECheckout.checkout(CVECheckout.java:91)
    at com.hcl.hips.idsclasses.CVECheckout.execute(CVECheckout.java:53)
    ... 71 more
link|improve this question
Its hard to tell anything with this.you need to tell what you trying to do and when you got this exception – Umesh Awasthi Dec 29 '11 at 5:21
NoSuchMethodError would mean a method was called that didn't exist. If you're importing stuff for the first time, check that you can execute some of the functions in these classes. – Aram Kocharyan Dec 29 '11 at 5:21
Thanks for ur reply Aram. When I am running the same application using main method of java, its working fine, But when i use the same code in struts 2.1.. its giving No such method error.. – user1118693 Dec 29 '11 at 5:36
Most of the time it happens if your runtime libraries are not supporting the method you are calling. Make sure Jars you have while running main method are there in struts application also. – thinksteep Dec 29 '11 at 5:38
@user1118693: i already asked you to provide details what you trying to do what library you have else you are making community people to guess what might be the issue – Umesh Awasthi Dec 29 '11 at 5:44
feedback

closed as not a real question by Umesh Awasthi, Bohemian, casperOne Dec 29 '11 at 15:19

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

you have probably an outdated jar of the svnwcutil thing in your classpath at runtime.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.