Remove unused exception

This commit is contained in:
Mike Bierlee 2015-02-21 02:14:25 +01:00
parent 7945cc0ea3
commit 6c8e3c81b3

View file

@ -22,15 +22,6 @@ debug {
public import poodinis.registration;
public import poodinis.autowire;
/**
* Exception thrown when errors occur while registering a type in a dependency container.
*/
class RegistrationException : Exception {
this(string message, TypeInfo registeredType, TypeInfo_Class concreteType) {
super(format("Exception while registering type %s to %s: %s", registeredType.toString(), concreteType.name, message));
}
}
/**
* Exception thrown when errors occur while resolving a type in a dependency container.
*/