I am working in android studio, using the butterknife.jar. But right know it is throwing an IOException in uneditable code. I throw the exception in the code that calls the method like this:
@OnClick(R.id.testButton)
public void Test() throws IOException {
dispatchMakeJson("Test" + System.currentTimeMillis(),Link, Title, Description);
}
But in the viewbinder it says it wants to throw the exception again.
Does anybody know what I have to do here?