Super class cannot be null

1
Hi Team,   I'm getting below error and unable to find the root cause for it. Any leads would be appreciated.   2024-03-29 13:15:00.808 ERROR - CommunityCommons: [RunMicroflowAsyncInQueue] Execution of task #3 failed: Failed to run Async: JMSCalls.Ivk_Process_Receiveed_Messages_Async: java.lang.IllegalArgumentException: requirement failed: Super class should not be nulljava.lang.RuntimeException: Failed to run Async: JMSCalls.Ivk_Process_Receiveed_Messages_Async: java.lang.IllegalArgumentException: requirement failed: Super class should not be null        at communitycommons.Misc$2.run(Misc.java:452)        at communitycommons.Misc$MFSerialExecutor$2.run(Misc.java:411)        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)        at java.base/java.lang.Thread.run(Thread.java:829) Caused by: com.mendix.core.CoreException: java.lang.IllegalArgumentException: requirement failed: Super class should not be null        at com.mendix.basis.component.ExecutionCore.executeAsyncVarargs(ExecutionCore.scala:142) Caused by: java.lang.IllegalArgumentException: requirement failed: Super class should not be null        at scala.Predef$.require(Predef.scala:337)        at com.mendix.basis.component.DomainModelCore.isSubClassOf(DomainModelCore.scala:44)        at com.mendix.basis.component.DomainModelCore.isSubClassOf$(DomainModelCore.scala:43)        at com.mendix.basis.component.InternalCore.isSubClassOf(InternalCore.scala:24)
asked
2 answers
3

assume that your microflow run java action RunMicroflowAsyncInQueue right ?, This java action need a microflow to run async , is it null ? or any of entity in the miroflow use audit trail super class ?

answered
0

Your error log shows that there was a problem running task #3 due to an invalid value for the parent class. This may indicate a bug in the code that requires the parent class to not be empty. You probably need to check what data is being passed to this task to ensure that incorrect values are not being passed in.

answered