The Trunk: Exceptions-fbs.46.mcz

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

The Trunk: Exceptions-fbs.46.mcz

commits-2
Frank Shearar uploaded a new version of Exceptions to project The Trunk:
http://source.squeak.org/trunk/Exceptions-fbs.46.mcz

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

Name: Exceptions-fbs.46
Author: fbs
Time: 14 June 2013, 2:40:33.086 pm
UUID: 5f1e0938-04bc-4669-85df-33fa0d7a8994
Ancestors: Exceptions-fbs.45

Move InvalidDirectoryError to Files.

=============== Diff against Exceptions-fbs.45 ===============

Item was removed:
- Error subclass: #InvalidDirectoryError
- instanceVariableNames: 'pathName'
- classVariableNames: ''
- poolDictionaries: ''
- category: 'Exceptions-Kernel'!

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

Item was removed:
- ----- 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 removed:
- ----- Method: InvalidDirectoryError>>pathName (in category 'accessing') -----
- pathName
- ^pathName!

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