Created
April 26, 2022 04:56
-
-
Save gaeng2y/887f0e00c94e9ebafac5c9c6f7b31f32 to your computer and use it in GitHub Desktop.
do-catch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| do { | |
| try 표현식 결과 | |
| } catch 패턴 1 { | |
| 처리 결과 | |
| } catch 패턴 2 where 조건 { | |
| 처리 결과 | |
| } catch { | |
| 처리 결과 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment