本帖最后由 李大伟 于 2011-11-25 17:52 编辑
class LanPingException extends Exception
{
LanPingException(String message)
{
super(message);
}
}
class MaoYanException extends Exception
{
MaoYanException(String message)
{
super(message);
}
}
class NoPlanException extends Exception
{
NoPlanException(String msg)
{
super(msg);
}
}
各位同学 帮忙看下老师讲的这个 message msg 是怎么来的
求解释
|