본문 바로가기
728x90
반응형

error4

[TypeScript] 타입스크립트 예외 처리 Errors (Try, Catch, Finally, Throw) 📖 예외 처리(exception handling)코드 실행 중에 예기치 못한 에러가 발생했을 때, 코드의 실행 흐름을 복구할 수 있는 기능⏳ 오류의 종류1. 코드가 실행조차 되지 않는 오류    프로그램 실행 전에 발생하는 오류를 구문 오류(syntax error)라고 부름.  2. 코드 실행 중간에 발생하는 오류    프로그램 실행 중에 발생하는 오류를     예외(exception) 또는 런타임 오류(runtime error)라고 부름.📚 예외 처리try catch finallytry..catch는 오직 런타임 에러에만 동작 try { // 1) 먼저 실행된다. // 2) 에러가 없으면 catch 구문은 무시된다. // 3-1) 에러가 있으면 실행이 중단되고, catch 블록으로 error객.. 2024. 7. 26.
[Spring] The project cannot be built until build path errors are resolved 에러 현상 해결 방법 🎯 GoalJava Build Path > Libararies > JRE 연결 방법을 안다.⚠️ 문제 현상STS에서 프로젝트파일 가져왔다가 아래와 같은 에러가 발생 했다.The project cannot be built until build path errors are resolved lds Unknown Java Problem Unbound classpath container: 'JRE System Library [JavaSE-21]' in project 'lds' lds Build path Build Path Problem💊 해결 방법1. 해당 프로젝트 우클릭 ▶ Properties   2. Java Build Path ▶ Libraries 탭 클릭   3. (unbound)로 뜨는 기존에 들어가.. 2024. 5. 9.
[Spring] Renaming project error 에러 현상 해결 방법 🎯 GoalSTS Renaming project error 에러 해결프로젝트를 STS에서 깃 클론 해서 다시 가져오는 방법을 안다.⚠️ 문제 현상STS에서 프로젝트 파일을 그대로 복붙했다가 아래와 같은 에러가 발생 했다.org.eclipse.buildship.core.internal.UnsupportedConfigurationException: Project at 'C:\Work\Git\LDS_Homepage' can't be named 'lds' because it's located directly under the workspace root. If such a project is renamed, Eclipse would move the container directory. To resolve thi.. 2024. 5. 9.
[MariaDB] 한글 인코딩 에러 SQL Error [1366][22007] (conn=5) Incorrect string value 에러 현상 해결 방법 🎯 GoalMariaDB 인코딩 설정을 utf8로 변경하는 방법을 안다.⚠️ 문제 현상데이터베이스 데이터 추가하는데 아래와 같은 에러가 발생 했다.MariaDB [iterview]> insert into customer(cust_name) values('권소현');ERROR 1366 (22007): Incorrect string value: '\xC7\xC1\xB7\xD0\xC6\xAE...' for column `iterview`.`tag`.`name` at row 1ERROR 1366 (22007): Incorrect string value: '\xC7\xC1\xB7\xD0\xC6\xAE...' for column `iterview`.`tag`.`name` at row 1 SQL Error [136.. 2024. 5. 3.
728x90
반응형