core/MetacelloSymbolicVersionNotDefinedError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 18 Sep 2012 18:24:44 +0000
changeset 16 25ac697dc747
parent 14 f01fe37493e9
permissions -rw-r--r--
- Updated from branch master

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

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::                                                                                                                        $'
! !