Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
c#でtry catchブロックを使用せずに例外をキャッチする方法は? UI の自動化中に、特定の要素が利用できない場合、システムが例外をスローする必要がある場合があります。
例外をスローしたい場合は、追加するだけです
throw new Exception();
例外をスローしたい場所。
Exception必要に応じて、より適切な例外タイプに置き換えることができます。
Exception