[squeak-dev] The Trunk: Files-fbs.122.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jun 14 13:41:48 UTC 2013


Frank Shearar uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-fbs.122.mcz

==================== Summary ====================

Name: Files-fbs.122
Author: fbs
Time: 14 June 2013, 2:41:21.884 pm
UUID: bdc041f2-ca5d-4217-a5c9-60417e836e45
Ancestors: Files-cmm.121

Move InvalidDirectoryError to Files.

=============== Diff against Files-cmm.121 ===============

Item was added:
+ Error subclass: #InvalidDirectoryError
+ 	instanceVariableNames: 'pathName'
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Files-Exceptions'!

Item was added:
+ ----- Method: InvalidDirectoryError class>>pathName: (in category 'exceptionInstantiator') -----
+ pathName: badPathName
+ 	^self new pathName: badPathName!

Item was added:
+ ----- Method: InvalidDirectoryError>>defaultAction (in category 'exceptionDescription') -----
+ defaultAction
+ 	"Return an empty list as the default action of signaling the occurance of an invalid directory."
+ 	^#()!

Item was added:
+ ----- Method: InvalidDirectoryError>>pathName (in category 'accessing') -----
+ pathName
+ 	^pathName!

Item was added:
+ ----- Method: InvalidDirectoryError>>pathName: (in category 'accessing') -----
+ pathName: badPathName
+ 	pathName := badPathName!



More information about the Squeak-dev mailing list