question about this exception. Say I have this java code.
and when running the code, I get this exception:
java.lang.NoSuchMethodError
com.models.CreateContext(Ljava/lang/String;IILjava/lang/String;ILjava/lang/String;Ljava/lang/String

I
that looks to be a function like:
int CreateContext(String, Int, Int, String, Int, String, String){ }
now, is that saying that I am calling a function using that signature?
such as
int n = CreateContext("Str", 0, 0, "Str", 0, "Str", "Str");
or the function I am calling has that signature?
CreateContext("Str", 0, 0, "Str", 0, "Str", "Str");
grr, I just realized the question doesn't make much sense
basically, I am calling this function such as:
Code:
p = new SomeObject();
p.CreateContext("Str", 0, 0, "Str", 0, "Str", "Str");
works fine and well locally, but once moved live, it gives me back the above Exception.
I dont know if the jar file with the SomeObject Code is the wrong or what, because the exception shows an int return value. The old JAR file had the function with an int return value, but the new JAR file with the updated code has it as a void function.