Back to project page kapsule.
The source code is released under:
MIT License
If you think the Android project kapsule listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.epsilonlabs.kapsule; // ww w . j ava 2s . c o m /** * Created by Sandile on 12/3/13. */ public class UndefinedContextException extends RuntimeException { private static final long serialVersionUID = -5925586523031410833L; public UndefinedContextException() { super("A context hasn't been provided to kapsule yet. To provide a context, use the Kapsule.context(..) method before you make any kapsule other calls."); } }