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