MetacelloSymbolicVersionNotDefinedError.st
author jv
Mon, 03 Sep 2012 11:13:41 +0000
changeset 1 9e312de5f694
permissions -rw-r--r--
- Initial commit

"{ Package: 'stx:goodies/metacello' }"

MetacelloSymbolicVersionDoesNotExistError subclass:#MetacelloSymbolicVersionNotDefinedError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-Core-Exceptions-Errors'
!


!MetacelloSymbolicVersionNotDefinedError methodsFor:'printing'!

description
    "Return a textual description of the exception."

    ^ 'The symbolic version ' , self versionString printString , ' is EXPLICITLY not defined in ' , self project label
        , ' for the current platform (i.e., symbolic version defined as #notDefined).'
! !

!MetacelloSymbolicVersionNotDefinedError class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !