GnuSmalltalkUsersGuide:BaseChapter 108

From 흡혈양파의 번역工房
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
MessageNotUnderstood

MessageNotUnderstood

네임스페이스 Smalltalk에 정의됨

슈퍼클래스: Error

범주: 언어-예외


MessageNotUnderstood는 메시지 검색 도중 오류를 표현한다. 이를 시그널링하는 것은 #doesNotUnderstand: 처리기의 기본 액션이다.


MessageNotUnderstood: 접근하기

message

이해하지 못한 메시지를 응답하라.

receiver

메시지가 향한 객체를 응답하라.


MessageNotUnderstood: 설명

description

예외에 관한 텍스트 설명을 응답하라.

isResumable

true를 응답하라. #doesNotUnderstand: 예외는 기본적으로 재개 가능하다.


Notes