全部博文(788)
分类:
2009-02-11 16:54:28
showmessage(E.Message)当然是显示系统异常信息. 你自定义你自己的异常信息.
如 EIPException = Exception
EPassException = Exception
try
....
except
E1: on EIPException Showmessage('IP错误')
E2: On EPassException Showmessage('密码错误错误')
try
....
except
on E1: EIPException DO Showmessage('IP错误')
On E2: EPassException DO Showmessage('密码错误错误')
END;