1 type derived from PluginException
NuGet.Credentials (1)
PluginUnexpectedStatusException.cs (1)
21
public class PluginUnexpectedStatusException :
PluginException
8 instantiations of PluginException
NuGet.Credentials (8)
PluginException.cs (7)
41
return new
PluginException
(
50
return new
PluginException
(
58
return new
PluginException
(string.Format(CultureInfo.CurrentCulture, Resources.PluginException_NotStarted_Format, path));
65
return new
PluginException
(string.Format(CultureInfo.CurrentCulture, Resources.PluginException_PathNotFound_Format, path,
73
return new
PluginException
(string.Format(CultureInfo.CurrentCulture, Resources.PluginException_Abort_Format, path, message));
82
return new
PluginException
(string.Format(
96
return new
PluginException
(string.Format(
SecurePluginCredentialProvider.cs (1)
113
throw 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)
151
catch (
PluginException
)
157
throw
PluginException
.Create(Path, e);
221
throw
PluginException
.CreateUnreadableResponseExceptionMessage(Path, status);
229
throw
PluginException
.CreateInvalidResponseExceptionMessage(
244
throw
PluginException
.CreateAbortMessage(Path, credentialResponse.Message);
262
throw
PluginException
.CreateNotStartedMessage(Path);
289
throw
PluginException
.CreateTimeoutMessage(Path, TimeoutSeconds);
PluginException.cs (7)
38
public static
PluginException
Create(string path, Exception inner)
47
public static
PluginException
CreateTimeoutMessage(string path, int timeoutMillis)
55
public static
PluginException
CreateNotStartedMessage(string path)
62
public static
PluginException
CreatePathNotFoundMessage(string path, string attempted)
70
public static
PluginException
CreateAbortMessage(string path, string message)
77
public static
PluginException
CreateUnreadableResponseExceptionMessage(
90
public static
PluginException
CreateInvalidResponseExceptionMessage(
PluginUnexpectedStatusException.cs (1)
59
public static
PluginException
CreateUnexpectedStatusMessage(