Back to project page baracus-framework.
The source code is released under:
Apache License
If you think the Android project baracus-framework 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 net.mantucon.baracus.context; //from ww w .j a va2 s. c om public class Exceptions { /** * Bean instanciation fucked up. Thrown when the instantiation of * a bean caised an errer */ final static class IntantiationException extends RuntimeException { IntantiationException(Throwable reason) { super(reason); } } /** * Registration of a bean failed. */ final static class RegistrationException extends RuntimeException { RegistrationException(Throwable reason) { super(reason); } } final static class IncompatibleTypesException extends RuntimeException { IncompatibleTypesException(String message) { super(message); } } /** * Injection of a bean caused an error */ final static class InjectionException extends RuntimeException { InjectionException(Throwable reason) { super(reason); } InjectionException(String msg, Throwable reason) { super(msg, reason); } } }