#18: make exceptions internal

pull/32/head
Simon Gockner 7 years ago
parent ef7f04899c
commit 887580faff
  1. 2
      LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs
  2. 2
      LightweightIocContainer/Exceptions/InternalResolveException.cs
  3. 2
      LightweightIocContainer/Exceptions/InvalidFactoryRegistrationException.cs
  4. 2
      LightweightIocContainer/Exceptions/InvalidRegistrationException.cs
  5. 2
      LightweightIocContainer/Exceptions/MultipleRegistrationException.cs
  6. 2
      LightweightIocContainer/Exceptions/MultitonResolveException.cs
  7. 2
      LightweightIocContainer/Exceptions/TypeNotRegisteredException.cs
  8. 2
      LightweightIocContainer/Exceptions/UnknownRegistrationException.cs

@ -10,7 +10,7 @@ namespace LightweightIocContainer.Exceptions
/// <summary>
/// The creation of the abstract method is illegal in its current state
/// </summary>
public class IllegalAbstractMethodCreationException : Exception
internal class IllegalAbstractMethodCreationException : Exception
{
/// <summary>
/// The creation of the abstract method is illegal in its current state

@ -10,7 +10,7 @@ namespace LightweightIocContainer.Exceptions
/// <summary>
/// An internal Error happened while the <see cref="IIocContainer"/> tried to resolve an instance
/// </summary>
public class InternalResolveException : Exception
internal class InternalResolveException : Exception
{
/// <summary>
/// An internal Error happened while the <see cref="IIocContainer"/> tried to resolve an instance

@ -7,7 +7,7 @@ namespace LightweightIocContainer.Exceptions
/// <summary>
/// The registration of a Factory is not valid
/// </summary>
public class InvalidFactoryRegistrationException : InvalidRegistrationException
internal class InvalidFactoryRegistrationException : InvalidRegistrationException
{
/// <summary>
/// The registration of a Factory is not valid

@ -9,7 +9,7 @@ namespace LightweightIocContainer.Exceptions
/// <summary>
/// The registration is not valid
/// </summary>
public class InvalidRegistrationException : Exception
internal class InvalidRegistrationException : Exception
{
/// <summary>
/// The registration is not valid

@ -10,7 +10,7 @@ namespace LightweightIocContainer.Exceptions
/// <summary>
/// The <see cref="System.Type"/> is already registered in this <see cref="IIocContainer"/>
/// </summary>
public class MultipleRegistrationException : Exception
internal class MultipleRegistrationException : Exception
{
/// <summary>
/// The <see cref="System.Type"/> is already registered in this <see cref="IIocContainer"/>

@ -9,7 +9,7 @@ namespace LightweightIocContainer.Exceptions
/// <summary>
/// An error happened while trying to resolve a multiton
/// </summary>
public class MultitonResolveException : InternalResolveException
internal class MultitonResolveException : InternalResolveException
{
/// <summary>
/// An error happened while trying to resolve a multiton

@ -10,7 +10,7 @@ namespace LightweightIocContainer.Exceptions
/// <summary>
/// The <see cref="System.Type"/> is not registered in this <see cref="IIocContainer"/>
/// </summary>
public class TypeNotRegisteredException : Exception
internal class TypeNotRegisteredException : Exception
{
/// <summary>
/// The <see cref="System.Type"/> is not registered in this <see cref="IIocContainer"/>

@ -10,7 +10,7 @@ namespace LightweightIocContainer.Exceptions
/// <summary>
/// An unknown <see cref="IRegistrationBase"/> was used
/// </summary>
public class UnknownRegistrationException : Exception
internal class UnknownRegistrationException : Exception
{
/// <summary>
/// An unknown <see cref="IRegistrationBase"/> was used

Loading…
Cancel
Save