Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×I want to copy an issue with this code:
```
MutableIssue copiedIssue= ComponentAccessor.getIssueFactory().cloneIssueWithAllFields(issue);
copiedIssue.setProjectObject(project);
try {
copiedIssue=
ComponentAccessor.getIssueManager().
.getIssueObject(ComponentAccessor.getIssueManager()..createIssueObject(user,copiedIssue).getKey());
} catch (CreateException e) {
throw new RuntimeException(e);
}
```
I get this error Message:
```
java.lang.RuntimeException:com.atlassian.jira.workflow.WorkflowException: An unknown exception occured executing Validator com.atlassian.jira.workflow.SkippableValidator@4b24c667: root cause: java.lang.NullPointerException
```
This works very fine until now...
I just changed somerwhere else the code with active objects but this has no influence on this part of the code and is also not executed(i deleted everything and rebuild it but nothing helped).
Hi Michael,
You've got a NullPointerException :
com.atlassian.jira.workflow.SkippableValidator@4b24c667: root cause: java.lang.NullPointerException
The stacktrace tell you the line where the Null Pointer is, just after this text. Take a look there.
I can see two mistakes in your code :
There is two points after getIssueManager() :
ComponentAccessor.getIssueManager()..createIssueObject(user,copiedIssue)copiedIssue = ComponentAccessor.getIssueManager().createIssueObject(user, copiedIssue);
This line is enough.
Hope this help.
Best regards,
Christophe Sauvage
The Nullpointer exception is in this line:
copiedIssue=
ComponentAccessor.getIssueManager().
getIssueObject(ComponentAccessor.getIssueManager()..createIssueObject(user,copiedIssue).getKey());
I've tried your version but it throws the same exception.
copiedIssue=(MutableIssue) Issues.issueManager().createIssueObject(user,copiedIssue);
java.lang.RuntimeException: Error copy issue CSD-1: com.atlassian.jira.workflow.WorkflowException: An unknown exception occured executing Validator com.atlassian.jira.workflow.SkippableValidator@65145c83: root cause: java.lang.NullPointerException at com.swql.jaeger.jira.webwork.CreateProjectAction.copyIssues(CreateProjectAction.java:233) [?:?] at com.swql.jaeger.jira.webwork.CreateProjectAction.doExecute(CreateProjectAction.java:88) [?:?] at webwork.action.ActionSupport.execute(ActionSupport.java:165) [webwork-1.4-atlassian-30.jar:?] at com.atlassian.jira.action.JiraActionSupport.execute(JiraActionSupport.java:63) [jira-api-7.2.2.jar:?] at webwork.interceptor.DefaultInterceptorChain.proceed(DefaultInterceptorChain.java:39) [webwork-1.4-atlassian-30.jar:?] at webwork.interceptor.NestedInterceptorChain.proceed(NestedInterceptorChain.java:31) [webwork-1.4-atlassian-30.jar:?]
Could it be from the mutable issue?
Any other idea?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Visibly, you have a validator in your workflow.
Take a look here, it'll probably help :
Tell me if it helped you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The problem was something different, it was the user which leads to the null pointer exception. With hardcoded user "admin" it works again.
Thank you Christophe for your help !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad you found a solution !
You're welcome !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unlock your potential and learn how to use Jira Product Discovery to your advantage. You’ll have the expertise to revolutionize ideas and insights, roadmapping, engage and align teams and stakeholders, and deliver the best solutions—faster. Enroll today!
Start Learning
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.