6 instantiations of ToolRuntimeException
dotnet-svcutil-lib (6)
CodeSerializer.cs (4)
42
throw new
ToolRuntimeException
(SR.NoCodeWasGenerated);
54
throw new
ToolRuntimeException
(SR.ErrCannotWriteFile, e);
88
throw new
ToolRuntimeException
(SR.ErrCodegenError, e);
107
throw new
ToolRuntimeException
(string.Format(SR.ErrCannotCreateFileFormat, _outputFilePath), e);
ImportModule.cs (1)
219
throw new
ToolRuntimeException
(SR.ErrUnableToLoadInputs, e);
OutputPathHelper.cs (1)
80
throw new
ToolRuntimeException
(string.Format(SR.ErrCannotCreateDirectoryFormat, directoryPath), e);
2 references to ToolRuntimeException
dotnet-svcutil-lib (2)
CodeSerializer.cs (1)
51
if (e is
ToolRuntimeException
|| Utils.IsFatalOrUnexpected(e))
Tool.cs (1)
381
else if (ex is
ToolRuntimeException
rt)