투케이2K

754. (Android/Gradle) [groovy] : [build.gradle] : try catch 예외 발생 처리 수행 본문

Android

754. (Android/Gradle) [groovy] : [build.gradle] : try catch 예외 발생 처리 수행

투케이2K 2024. 3. 21. 20:53

[개발 환경 설정]

개발 툴 : AndroidStudio

 

[소스 코드]

android {

    // [Groovy 문법 테스트]
    applicationVariants.all { variant ->
        if (variant.buildType.isDebuggable()){ // [개발 모드 인 경우]

            // [try catch 예외 처리 구문 작성]
            try {
                def arr = new int[3];
                arr[5] = 5;
            }
            catch (Exception e){
                println("")
                println("------------------------------------------------")
                println("[Exception Print]")
                println("------------------------------------------------")
                println("error : " + e.message)
                println("------------------------------------------------")
                println("")
            }

        }
    }
}
 

[결과 출력]

 

------------------------------------------------
[Exception Print]
------------------------------------------------
error : Index 5 out of bounds for length 3
------------------------------------------------

 

반응형
Comments