'<typename>' 형식은 'System.Exception' 또는 'System.Exception'에서 상속한 클래스가 아니므로 'Catch'로 이 형식을 catch할 수 없습니다.
업데이트: 2007년 11월
'Catch' cannot catch type '<typename>' because it is not 'System.Exception' or a class that inherits from 'System.Exception'
Catch는 예외만 catch할 수 있는데 여기서는 예외에서 파생되지 않은 것을 catch하려고 했습니다.
오류 ID: BC30392
이 오류를 해결하려면
- Catch 문을 제거하거나 Catch의 대상을 실제 예외로 변경합니다.