next up previous contents
Next: 14.2 SystemExceptionクラス Up: 14. 例外 Previous: 14. 例外

14.1 Exceptionクラス

Exceptionクラスは、「投げる」例外を提供するための定義済みクラス です。Cmmでは、例外はこのExceptionクラス、あるいはそのサブクラス のインスタンスに限られています。

Exceptionクラスは、下記のように定義されています。


class Exception : Class {

public message ;
method New (mes) {
if ($# == 1)
message = 'Exception' ;
else
message = mes ;
}
}


next up previous contents
Next: 14.2 SystemExceptionクラス Up: 14. 例外 Previous: 14. 例外
Tetsuo Ono
1998-11-05