PackageNotCompatibleError.st
changeset 23792 6b5eec667516
parent 17086 c2e8c7553797
--- a/PackageNotCompatibleError.st	Sat Mar 02 12:22:38 2019 +0100
+++ b/PackageNotCompatibleError.st	Sat Mar 02 14:21:28 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2014 by eXept Software AG
               All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 PackageNotFoundError subclass:#PackageNotCompatibleError
 	instanceVariableNames:''
 	classVariableNames:''
@@ -18,8 +22,7 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
-
-!PackageNotCompatibleError class methodsFor:'initialization'!
+!PackageNotCompatibleError class methodsFor:'documentation'!
 
 copyright
 "
@@ -37,11 +40,13 @@
 
 documentation
 "
-    raised when a package is not compatible with this platform/machine.
-    There are not many, for which this is raised; one example is OLE, COM,
-    which are only supported for windows systems.
+    raised when a loaded package is not compatible with this platform/machine.
+    There are not many, for which this is raised; 
+    examples are OLE, COM, which are only supported for Windows systems.
 "
-!
+! !
+
+!PackageNotCompatibleError class methodsFor:'initialization'!
 
 initialize
     NotifierString := 'Package is not compatible with this platform'.
@@ -50,11 +55,11 @@
 !PackageNotCompatibleError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PackageNotCompatibleError.st,v 1.1 2014-11-20 00:11:55 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/PackageNotCompatibleError.st,v 1.1 2014-11-20 00:11:55 cg Exp $'
+    ^ '$Header$'
 ! !