1 type derived from PluginException
NuGet.Credentials (1)
PluginUnexpectedStatusException.cs (1)
21public class PluginUnexpectedStatusException : PluginException
8 instantiations of PluginException
NuGet.Credentials (8)
PluginException.cs (7)
41return new PluginException( 50return new PluginException( 58return new PluginException(string.Format(CultureInfo.CurrentCulture, Resources.PluginException_NotStarted_Format, path)); 65return new PluginException(string.Format(CultureInfo.CurrentCulture, Resources.PluginException_PathNotFound_Format, path, 73return new PluginException(string.Format(CultureInfo.CurrentCulture, Resources.PluginException_Abort_Format, path, message)); 82return new PluginException(string.Format( 96return new PluginException(string.Format(
SecurePluginCredentialProvider.cs (1)
113throw new PluginException(creationResult.Message, creationResult.Exception); // Throwing here will block authentication and ensure that the complete operation fails.
15 references to PluginException
NuGet.Credentials (15)
PluginCredentialProvider.cs (7)
151catch (PluginException) 157throw PluginException.Create(Path, e); 219throw PluginException.CreateUnreadableResponseExceptionMessage(Path, status); 227throw PluginException.CreateInvalidResponseExceptionMessage( 242throw PluginException.CreateAbortMessage(Path, credentialResponse.Message); 260throw PluginException.CreateNotStartedMessage(Path); 287throw PluginException.CreateTimeoutMessage(Path, TimeoutSeconds);
PluginException.cs (7)
38public static PluginException Create(string path, Exception inner) 47public static PluginException CreateTimeoutMessage(string path, int timeoutMillis) 55public static PluginException CreateNotStartedMessage(string path) 62public static PluginException CreatePathNotFoundMessage(string path, string attempted) 70public static PluginException CreateAbortMessage(string path, string message) 77public static PluginException CreateUnreadableResponseExceptionMessage( 90public static PluginException CreateInvalidResponseExceptionMessage(
PluginUnexpectedStatusException.cs (1)
59public static PluginException CreateUnexpectedStatusMessage(