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

IOException.zs 237B

1234567891011
  1. [Native("io::IOException")]
  2. public class IOException : Exception {
  3. [Native("constructor")]
  4. public this(message as string) {
  5. super(message);
  6. }
  7. /*public this(message as string, cause as Exception) {
  8. super(message, cause);
  9. }*/
  10. }