You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 26, 2018. It is now read-only.
We just had a exception from ReasonableSakaiServlet:
NullPointerException
java.lang.Class in isAssignableFrom at line -2
uk.ac.cam.caret.sakai.rsf.servlet.ReasonableSakaiServlet in service at line 70 (application)
javax.servlet.http.HttpServlet in service at line 729
org.apache.catalina.core.ApplicationFilterChain in internalDoFilter at line 269 (application)
org.apache.catalina.core.ApplicationFilterChain in doFilter at line 188 (application)
org.sakaiproject.util.RequestFilter in doFilter at line 669 (application)
it looks like:
if (t instanceof UniversalRuntimeException) {
UniversalRuntimeException ure = (UniversalRuntimeException) t;
if (ForcibleException.class.isAssignableFrom(ure.getCategory())) { // Line 70
throw (ure);
}
}
so I think that the category returned from the UniversalRuntimeException is null.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We just had a exception from ReasonableSakaiServlet:
it looks like:
so I think that the category returned from the UniversalRuntimeException is null.
The text was updated successfully, but these errors were encountered: