CmdLineOptionError.st
author Claus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:55:17 +0200
changeset 24417 03b083548da2
parent 13936 fbc0f4f1e58f
child 18011 deb0c3355881
permissions -rw-r--r--
#REFACTORING by exept class: Smalltalk class changed: #recursiveInstallAutoloadedClassesFrom:rememberIn:maxLevels:noAutoload:packageTop:showSplashInLevels: Transcript showCR:(... bindWith:...) -> Transcript showCR:... with:...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
     1
"
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
     3
              All Rights Reserved
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
     4
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     5
 This software is furnished under a license and may be used
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     6
 only in accordance with the terms of that license and with the
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     8
 be provided or otherwise made available to, or used by, any
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     9
 other person.  No title to or ownership of the software is
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    10
 hereby transferred.
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    11
"
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    13
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    14
Error subclass:#CmdLineOptionError
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    15
	instanceVariableNames:''
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    16
	classVariableNames:''
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    17
	poolDictionaries:''
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    18
	category:'System-Support-Command line'
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    19
!
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    20
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    21
!CmdLineOptionError class methodsFor:'documentation'!
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    22
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    23
copyright
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    24
"
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    26
              All Rights Reserved
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    27
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    28
 This software is furnished under a license and may be used
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    29
 only in accordance with the terms of that license and with the
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    31
 be provided or otherwise made available to, or used by, any
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    32
 other person.  No title to or ownership of the software is
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    33
 hereby transferred.
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    34
"
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    35
! !
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    36
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    37
!CmdLineOptionError class methodsFor:'documentation'!
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    38
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    39
version
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    40
    ^'$Header: /cvs/stx/stx/libbasic/CmdLineOptionError.st,v 1.3 2012-01-13 10:58:08 vrany Exp $'
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    41
!
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    42
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    43
version_SVN
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    44
    ^ '§Id: CmdLineOptionError.st 10717 2011-10-11 15:53:59Z vranyj1 §'
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    45
! !