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. }