7 instantiations of RegistryException
Microsoft.Build (7)
BackEnd\Components\Communications\SerializationContractInitializer.cs (1)
38
new(typeof(RegistryException), (msg, inner) => new
RegistryException
(msg, inner)),
Utilities\RegistryKeyWrapper.cs (6)
89
throw new
RegistryException
(ex.Message, ex);
119
throw new
RegistryException
(ex.Message, Name + "@" + name, ex);
135
throw new
RegistryException
(ex.Message, Name, ex);
151
throw new
RegistryException
(ex.Message, Name, ex);
181
throw new
RegistryException
(ex.Message, wrapper.Name + "\\" + keyNames[i], ex);
215
throw new
RegistryException
(ex.Message, _wrappedKey == null ? string.Empty : Name, ex);
9 references to RegistryException
Microsoft.Build (9)
BackEnd\Components\Communications\SerializationContractInitializer.cs (1)
38
new(typeof(
RegistryException
), (msg, inner) => new RegistryException(msg, inner)),
Definition\ToolsetRegistryReader.cs (7)
15
using RegistryException = Microsoft.Build.Exceptions.
RegistryException
;
86
catch (
RegistryException
ex)
184
catch (
RegistryException
ex)
215
catch (
RegistryException
ex)
248
catch (
RegistryException
ex)
257
catch (
RegistryException
ex)
302
catch (
RegistryException
ex)
Utilities\RegistryKeyWrapper.cs (1)
10
using RegistryException = Microsoft.Build.Exceptions.
RegistryException
;