# HG changeset patch # User Claus Gittinger # Date 1387200995 -3600 # Node ID 51bcb40ebcb99826d59e7ec4d7e8e7e3799b8f58 # Parent c3c4112651c468dd851a4168e4c871c7378121f8 class: ArgumentError added: #documentation diff -r c3c4112651c4 -r 51bcb40ebcb9 ArgumentError.st --- a/ArgumentError.st Mon Dec 16 09:36:39 2013 +0000 +++ b/ArgumentError.st Mon Dec 16 14:36:35 2013 +0100 @@ -9,7 +9,6 @@ other person. No title to or ownership of the software is hereby transferred. " - "{ Package: 'stx:libbasic' }" ExecutionError subclass:#ArgumentError @@ -33,6 +32,12 @@ other person. No title to or ownership of the software is hereby transferred. " +! + +documentation +" + execution errors related to invalid or missing arguments +" ! ! !ArgumentError class methodsFor:'initialization'! @@ -44,7 +49,8 @@ !ArgumentError class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/ArgumentError.st,v 1.3 2003-09-05 10:27:53 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ArgumentError.st,v 1.4 2013-12-16 13:36:35 cg Exp $' ! ! + ArgumentError initialize!