core/MetacelloProjectSpecLoadConflict.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 10 Sep 2012 21:28:05 +0000
changeset 11 d354ac2af7ec
parent 10 fd87600067b8
child 14 f01fe37493e9
permissions -rw-r--r--
Metacello package refactoring - phase 2~

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

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