diff --git a/scripts/list-error-types.ps1 b/scripts/list-error-types.ps1 new file mode 100644 index 00000000..d064289c --- /dev/null +++ b/scripts/list-error-types.ps1 @@ -0,0 +1,7 @@ +[appdomain]::CurrentDomain.GetAssemblies() | ForEach { + Try { + $_.GetExportedTypes() | Where { + $_.Fullname -match 'Exception' + } + } Catch {} +} | Select BaseType,Name,FullName \ No newline at end of file