MCCannotLoadMethodError.st
author Claus Gittinger <cg@exept.de>
Sat, 01 Sep 2018 17:32:31 +0200
changeset 1087 d37466310a6a
parent 577 cc25b05a102a
permissions -rw-r--r--
initial checkin class: MCFileTreeFileSystemUtils class: MCFileTreeFileSystemUtils class added:17 methods

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

ProceedableError subclass:#MCCannotLoadMethodError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-St/X UI'
!


!MCCannotLoadMethodError methodsFor:'accessing'!

methodDefinition
    ^ parameter

    "Created: / 11-09-2012 / 09:51:17 / cg"
!

methodDefinition:anMCMethodDefinition
    parameter := anMCMethodDefinition

    "Created: / 11-09-2012 / 09:51:35 / cg"
! !

!MCCannotLoadMethodError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCCannotLoadMethodError.st,v 1.1 2012-09-11 21:01:06 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCCannotLoadMethodError.st,v 1.1 2012-09-11 21:01:06 cg Exp $'
! !