Initialize notifier string
authorStefan Vogel <sv@exept.de>
Wed, 30 Mar 2005 00:25:15 +0200
changeset 8802 7abd98eb6a6c
parent 8801 02d568c0e298
child 8803 0eea3a9fb67c
Initialize notifier string
SnapshotError.st
--- a/SnapshotError.st	Tue Mar 29 15:11:25 2005 +0200
+++ b/SnapshotError.st	Wed Mar 30 00:25:15 2005 +0200
@@ -35,8 +35,16 @@
 "
 ! !
 
+!SnapshotError class methodsFor:'initialization'!
+
+initialize
+    NotifierString := 'Failed to save snapshot image (disk full or not writable)'.
+! !
+
 !SnapshotError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SnapshotError.st,v 1.2 2003-08-30 12:36:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SnapshotError.st,v 1.3 2005-03-29 22:25:15 stefan Exp $'
 ! !
+
+SnapshotError initialize!