Преглед на файлове

Use better exception to represent unsupported converter

ghorsington преди 5 години
родител
ревизия
141e1ae35e
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      ArcToolkitCLI/Commands/Converters/BaseConverter.cs

+ 1 - 1
ArcToolkitCLI/Commands/Converters/BaseConverter.cs

@@ -19,7 +19,7 @@ namespace ArcToolkitCLI.Commands.Converters
             var verb = GetType().GetCustomAttributes(typeof(VerbAttribute), true).Cast<VerbAttribute>().FirstOrDefault();
             
             if(verb == null)
-                throw new NotImplementedException("The converter is not properly implemented yet, sorry!");
+                throw new NotSupportedException("The converter is not properly implemented yet, sorry!");
 
             var convertCommand = verb.Name;