반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Kotlin
- array
- numpy
- PostgreSQL
- Tkinter
- Apache
- google apps script
- matplotlib
- Excel
- GIT
- dataframe
- SQL
- Mac
- gas
- math
- c#
- Redshift
- PySpark
- django
- hive
- PANDAS
- Google Spreadsheet
- 파이썬
- list
- string
- Github
- Python
- Java
- Google Excel
Archives
- Today
- Total
목록catch (1)
달나라 노트
Google Apps Script : try ~ catch ~ finally (try 구문, 예외 처리, 에러 처리, try except)
try ~ catch ~ finally 구문은 에러 처리를 할 때 사용합니다. 에러가 발생했을 때 어떤 동작을 할지를 지정해주는 구문입니다. Syntax try { do something 1 } catch(variable) { do something 2 } finally { do something 3 } 형태는 위와 같습니다. 실행되는 순서를 알아봅시다. 가장 먼저 try { ~~ } 부분이 실행됩니다. do something 1을 실행하고 여기서 에러가 발생한다면 catch 블록이 실행됩니다. 만약 try 블록에서 에러가 발생하지 않았다면 catch 블록은 실행되지 않습니다. finally 블록은 try, catch 블록에서 에러가 발생하건말건 무조건 실행되는 부분입니다. catch 블록을 보면 cat..
Google Apps Script
2022. 11. 22. 20:54