#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Wed, 06 Dec 2017 03:32:27 +0100
changeset 4283 2bd472dd7b62
parent 4282 1f8310c7bb5d
child 4284 74759f312989
#FEATURE by cg class: SourceCodeManagerError class added: #tagAlreadyExists class: SourceCodeManagerError::TagAlreadyExists class definition class: SourceCodeManagerError::TagAlreadyExists class added: #documentation
SourceCodeManagerError.st
--- a/SourceCodeManagerError.st	Wed Dec 06 03:32:15 2017 +0100
+++ b/SourceCodeManagerError.st	Wed Dec 06 03:32:27 2017 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic3' }"
 
+"{ NameSpace: Smalltalk }"
+
 ProceedableError subclass:#SourceCodeManagerError
 	instanceVariableNames:''
 	classVariableNames:''
@@ -18,6 +20,13 @@
 	category:'System-SourceCodeManagement'
 !
 
+SourceCodeManagerError subclass:#TagAlreadyExists
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:SourceCodeManagerError
+!
+
 !SourceCodeManagerError class methodsFor:'documentation'!
 
 copyright
@@ -34,9 +43,35 @@
 "
 ! !
 
+!SourceCodeManagerError class methodsFor:'class access'!
+
+tagAlreadyExists
+    ^ TagAlreadyExists
+
+    "Created: / 05-12-2017 / 21:15:18 / cg"
+! !
+
+!SourceCodeManagerError::TagAlreadyExists class methodsFor:'documentation'!
+
+documentation
+"
+    documentation to be added.
+
+    [author:]
+        cg
+
+    [instance variables:]
+
+    [class variables:]
+
+    [see also:]
+
+"
+! !
 
 !SourceCodeManagerError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/SourceCodeManagerError.st,v 1.3 2011-08-12 11:36:52 stefan Exp $'
+    ^ '$Header$'
 ! !
+