MetacelloSymbolicVersionDoesNotExistError.st
author jv
Mon, 03 Sep 2012 11:13:41 +0000
changeset 1 9e312de5f694
permissions -rw-r--r--
- Initial commit
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     1
"{ Package: 'stx:goodies/metacello' }"
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     2
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     3
MetacelloVersionDoesNotExistError subclass:#MetacelloSymbolicVersionDoesNotExistError
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     4
	instanceVariableNames:''
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     5
	classVariableNames:''
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     6
	poolDictionaries:''
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     7
	category:'Metacello-Core-Exceptions-Errors'
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     8
!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     9
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    10
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    11
!MetacelloSymbolicVersionDoesNotExistError methodsFor:'accessing'!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    12
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    13
possibleVersions
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    14
    ^ self project symbolicVersionSymbols
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    15
! !
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    16
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    17
!MetacelloSymbolicVersionDoesNotExistError methodsFor:'printing'!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    18
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    19
description
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    20
    "Return a textual description of the exception."
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    21
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    22
    ^ 'The symbolic version ' , self versionString printString , ' is not defined in ' , self project label
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    23
        , ' for the current platform. Possible symbolic version values include: ' , self possibleVersions printString
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    24
! !
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    25
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    26
!MetacelloSymbolicVersionDoesNotExistError class methodsFor:'documentation'!
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    27
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    28
version_SVN
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    29
    ^ '$Id::                                                                                                                        $'
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    30
! !