示例代码如下
if (input.length != 2) {
logger.error("The input for execute " + component.toString() + " is not right!");
throw new Exception("hehehe");
}
及
if (input.length != 2) {
logger.error("The input for execute " + component.toString() + " is not right!");
throw new Error("hehehe");
}
例外:
1.制御可能 (チェックあり) または制御不能 (チェックなし) のいずれかです。
2.プログラマによって引き起こされたエラーを示します。
3.アプリケーションレベルで処理する必要があります。
エラー:
1.常にチェックを外します。
2.
系统错误
または底层资源
エラーを示すためによく使用されます。3.可能な限り、システム レベルで捕捉する必要があります。
あなたのプログラムでは決して使用しないと言われたことを覚えているようです
throw error