msdn linkには、
System.ExceptionまたはSystem.SystemExceptionをスローしないように記載されています。
私のコードでは、私はこのように投げています
private MsgShortCode GetshortMsgCode(string str)
{
switch (str.Replace(" ","").ToUpper())
{
case "QNXC00":
return MsgShortCode.QNXC00;
default:
throw new Exception("Invalid message code received");
}
}
これは悪い習慣ですか?