// Author: simon.gockner // Created: 2019-05-20 // Copyright(c) 2019 SimonG. All Rights Reserved. namespace LightweightIocContainer.Exceptions { /// /// The registration is not valid /// internal class InvalidRegistrationException : IocContainerException { /// /// The registration is not valid /// /// The exception message public InvalidRegistrationException(string message) : base(message) { } } }