Do not throw generic exceptions
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
ID: csharp-best-practices/use-specific-exceptions
Language: C#
Severity: Warning
Category: Best Practices
Description
Exceptions should be specific to the application to help points the exact issue. For these reasons, generic exceptions should not be used and we should instead favor specific exception types.
Non-Compliant Code Examples
class MyClass {
public static void processString(string s)
{
throw new Exception("foo");
throw new ApplicationException("oh no something got wrong");
}
}
Compliant Code Examples
class MyClass {
public static void processString(string s)
{
throw new MyCustomException("oh no!");
}
}