ZenScript main repository
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IOException.zs 184B

123456789
  1. public class IOException : Exception {
  2. public this(message as string) {
  3. super(message);
  4. }
  5. /*public this(message as string, cause as Exception) {
  6. super(message, cause);
  7. }*/
  8. }