MCNoChangesException.st
author Jan Vrany <jan.vrany@labware.com>
Tue, 11 Jul 2023 12:59:07 +0100
branchjv
changeset 1174 f0a16c301971
parent 1164 b2f0322f5c53
permissions -rw-r--r--
Make `ProjectDefinition >> #monticelloTimestamps_code` an extension in `stx:goodies/monticello` ...and convert it to use (not so) new annotation-based extension mechanism.

"
COPYRIGHT (c) 2022 LabWare
"
"{ Package: 'stx:goodies/monticello' }"

"{ NameSpace: Smalltalk }"

Exception subclass:#MCNoChangesException
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Versioning'
!

!MCNoChangesException class methodsFor:'documentation'!

copyright
"
COPYRIGHT (c) 2022 LabWare


"
! !

!MCNoChangesException methodsFor:'as yet unclassified'!

defaultAction
	self inform: 'No changes'
! !

!MCNoChangesException class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCNoChangesException.st,v 1.2 2012-09-11 21:13:40 cg Exp $'
!

version_HG

    ^ '$Changeset: <not expanded> $'
! !