I have been architect and developing an automation framework recently. And I have been codingĀ the framework in a pair with a colleague. We need to print out the result of the of test. He used System.out.println() in many different locations in the code to print result to the console, and then he decided to save the result in a… Read more →
Category: Java
Java – SecurityException – signer information does not match signer information of other classes in the same package
Today I want to talk about a java exception, SecurityException, I encountered. I build my project via command line using maven, and I encountered this exception: java.lang.SecurityException: [YourClassGoesHere]’s class signer information does not match signer information of other classes in the same package Here is my situation: I am merging my code into an existing project, which was managed/developed by… Read more →