comparison orange/serialization/archives/ArchiveException.d @ 9:99c52d46822a

Serialization works now with D2, deserialization still doesn't work
author Jacob Carlborg <doob@me.com>
date Sat, 24 Jul 2010 18:58:18 +0200
parents f7b078e85f7f
children 78e5fef4bbf2
comparison
equal deleted inserted replaced
8:613a0bb20207 9:99c52d46822a
19 this (string message, string file, long line) 19 this (string message, string file, long line)
20 { 20 {
21 super(message, file, line); 21 super(message, file, line);
22 } 22 }
23 23
24 this (Exception exception) 24 this (ExceptionBase exception)
25 { 25 {
26 super(exception); 26 super(exception);
27 } 27 }
28 } 28 }