The Trunk: Files-fbs.122.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Files-fbs.122.mcz

commits-2
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!