CmdLineOptionError.st
author Patrik Svestka <patrik.svestka@gmail.com>
Tue, 09 Apr 2019 11:34:04 +0200
branchjv
changeset 24093 0f94f6c8c9d4
parent 23547 c69c97cec351
permissions -rw-r--r--
Issue #269: Renaming a registry subKey via RegRenameKey() or if it fails via NtRenameKey()
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23547
c69c97cec351 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 23107
diff changeset
     1
"{ Encoding: utf8 }"
c69c97cec351 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 23107
diff changeset
     2
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
     3
"
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     4
 COPYRIGHT (c) 2006 by eXept Software AG
23107
40173e082cbc Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18011
diff changeset
     5
 COPYRIGHT (c) 2009 Jan Vrany
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
     6
              All Rights Reserved
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
     7
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     8
 This software is furnished under a license and may be used
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
     9
 only in accordance with the terms of that license and with the
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    10
 inclusion of the above copyright notice.   This software may not
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    11
 be provided or otherwise made available to, or used by, any
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    12
 other person.  No title to or ownership of the software is
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    13
 hereby transferred.
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    14
"
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    15
"{ Package: 'stx:libbasic' }"
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    16
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    17
Error subclass:#CmdLineOptionError
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    18
	instanceVariableNames:''
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    19
	classVariableNames:''
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    20
	poolDictionaries:''
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    21
	category:'System-Support-Command line'
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    22
!
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    23
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    24
!CmdLineOptionError class methodsFor:'documentation'!
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    25
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    26
copyright
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    27
"
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    28
 COPYRIGHT (c) 2006 by eXept Software AG
23107
40173e082cbc Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18011
diff changeset
    29
 COPYRIGHT (c) 2009 Jan Vrany
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    30
              All Rights Reserved
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    31
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    32
 This software is furnished under a license and may be used
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    33
 only in accordance with the terms of that license and with the
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    35
 be provided or otherwise made available to, or used by, any
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    36
 other person.  No title to or ownership of the software is
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    37
 hereby transferred.
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    38
"
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    39
! !
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    40
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    41
!CmdLineOptionError class methodsFor:'documentation'!
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    42
13936
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    43
version
fbc0f4f1e58f Updated from SVN
vrany
parents: 13484
diff changeset
    44
    ^'$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
    45
!
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    46
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    47
version_SVN
23547
c69c97cec351 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 23107
diff changeset
    48
    ^ '§Id: CmdLineOptionError.st 10717 2011-10-11 15:53:59Z vranyj1 §'
13402
2d18a79f3fcc Added command line parsing stuff
vrany
parents:
diff changeset
    49
! !