Interface InternalRequestGlobals
-
- All Known Implementing Classes:
InternalRequestGlobalsImpl
public interface InternalRequestGlobals
Stores global per-request data internal to the framework.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Throwable
getClassLoaderException()
void
storeClassLoaderException(Throwable classLoaderException)
Stores the throwable for later; only the first such exception is kept (later exceptions are ignored, see TAPESTRY-2399).
-
-
-
Method Detail
-
storeClassLoaderException
void storeClassLoaderException(Throwable classLoaderException)
Stores the throwable for later; only the first such exception is kept (later exceptions are ignored, see TAPESTRY-2399).
-
getClassLoaderException
Throwable getClassLoaderException()
-
-