MetacelloSymbolicVersionDoesNotExistError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 03 Sep 2012 13:10:51 +0000
changeset 3 504152ada1fc
parent 1 9e312de5f694
permissions -rw-r--r--
fixed stc-compilability

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

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


!MetacelloSymbolicVersionDoesNotExistError methodsFor:'accessing'!

possibleVersions
    ^ self project symbolicVersionSymbols
! !

!MetacelloSymbolicVersionDoesNotExistError methodsFor:'printing'!

description
    "Return a textual description of the exception."

    ^ 'The symbolic version ' , self versionString printString , ' is not defined in ' , self project label
        , ' for the current platform. Possible symbolic version values include: ' , self possibleVersions printString
! !

!MetacelloSymbolicVersionDoesNotExistError class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !