6 implementations of ILogMessageException
NuGet.Commands (2)
RestoreCommand\RestoreCommandException.cs (1)
14public class RestoreCommandException : Exception, ILogMessageException
SignCommand\SignCommandException.cs (1)
14public sealed class SignCommandException : Exception, ILogMessageException
NuGet.Common (1)
CommandLineArgumentCombinationException.cs (1)
8public class CommandLineArgumentCombinationException : Exception, ILogMessageException
NuGet.Packaging (3)
Core\PackagingException.cs (1)
9public class PackagingException : Exception, ILogMessageException
Exceptions\MinClientVersionException.cs (1)
12public class MinClientVersionException : PackagingException, ILogMessageException
Exceptions\UnsafePackageEntryException.cs (1)
9public class UnsafePackageEntryException : PackagingException, ILogMessageException
5 references to ILogMessageException
NuGet.Commands (3)
RestoreCommand\SourceRepositoryDependencyProvider.cs (3)
702while ((currentException is FatalProtocolException || currentException is not ILogMessageException) && currentException != null) 706var logMessageException = currentException as ILogMessageException;
NuGet.Common (2)
ExceptionUtilities.cs (2)
36var logExceptionMessage = unwrappedException as ILogMessageException;