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