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

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

MetacelloProjectSpecLoadError subclass:#MetacelloProjectSpecLoadConflict
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-Core-Exceptions-Errors'
!


!MetacelloProjectSpecLoadConflict methodsFor:'accessing'!

possibleVersions
    "not applicable to a Conflict error"

    self shouldNotImplement
!

versionString
    "not applicable to a Conflict error"

    self shouldNotImplement
! !

!MetacelloProjectSpecLoadConflict methodsFor:'private'!

isResumable
	"Determine whether an exception is resumable."

	^ true
! !

!MetacelloProjectSpecLoadConflict class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !