From 440b4ae7f6ebe43e689f47df8e432b3e1c6a569e Mon Sep 17 00:00:00 2001 From: Simon G Date: Thu, 16 Dec 2021 11:28:57 +0100 Subject: [PATCH] - make exceptions internal --- .../Exceptions/GenericMethodNotFoundException.cs | 2 +- .../Exceptions/InvalidDisposeStrategyException.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LightweightIocContainer/Exceptions/GenericMethodNotFoundException.cs b/LightweightIocContainer/Exceptions/GenericMethodNotFoundException.cs index 1438b54..8346587 100644 --- a/LightweightIocContainer/Exceptions/GenericMethodNotFoundException.cs +++ b/LightweightIocContainer/Exceptions/GenericMethodNotFoundException.cs @@ -9,7 +9,7 @@ namespace LightweightIocContainer.Exceptions /// /// Could not find generic method /// - public class GenericMethodNotFoundException : Exception + internal class GenericMethodNotFoundException : Exception { /// /// Could not find generic method diff --git a/LightweightIocContainer/Exceptions/InvalidDisposeStrategyException.cs b/LightweightIocContainer/Exceptions/InvalidDisposeStrategyException.cs index 9e4e6db..5b01dc2 100644 --- a/LightweightIocContainer/Exceptions/InvalidDisposeStrategyException.cs +++ b/LightweightIocContainer/Exceptions/InvalidDisposeStrategyException.cs @@ -9,7 +9,7 @@ namespace LightweightIocContainer.Exceptions; /// /// Invalid is used /// -public class InvalidDisposeStrategyException : IocContainerException +internal class InvalidDisposeStrategyException : IocContainerException { /// /// Invalid is used