FileDoesNotExistException.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 10 Jun 2015 08:43:00 +0100
branchjv
changeset 18482 68a43e2b3e78
parent 18028 e39da2aa21bc
child 21024 8734987eb5c7
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14835
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     1
"
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     2
 COPYRIGHT (c) 2011 by eXept Software AG
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     3
              All Rights Reserved
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     4
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     5
 This software is furnished under a license and may be used
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     6
 only in accordance with the terms of that license and with the
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     8
 be provided or otherwise made available to, or used by, any
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
     9
 other person.  No title to or ownership of the software is
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    10
 hereby transferred.
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    11
"
13664
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
OpenError subclass:#FileDoesNotExistException
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-Errors'
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
14835
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    21
!FileDoesNotExistException class methodsFor:'documentation'!
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    22
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    23
copyright
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    24
"
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    25
 COPYRIGHT (c) 2011 by eXept Software AG
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    26
              All Rights Reserved
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    27
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    28
 This software is furnished under a license and may be used
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    29
 only in accordance with the terms of that license and with the
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    31
 be provided or otherwise made available to, or used by, any
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    32
 other person.  No title to or ownership of the software is
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    33
 hereby transferred.
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    34
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    35
"
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    36
! !
13664
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!FileDoesNotExistException class methodsFor:'documentation'!
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
version
14835
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    41
    ^ '$Header: /cvs/stx/stx/libbasic/FileDoesNotExistException.st,v 1.2 2013-03-06 17:07:42 cg Exp $'
13664
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
!
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
version_CVS
14835
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    45
    ^ '$Header: /cvs/stx/stx/libbasic/FileDoesNotExistException.st,v 1.2 2013-03-06 17:07:42 cg Exp $'
13664
44ec0d965e57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
! !
14835
ef4642596133 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 13664
diff changeset
    47