mercurial/HGInvalidExecutableError.st
changeset 378 5c36325d6f60
child 509 f92210d4585b
equal deleted inserted replaced
377:b2123fd2888b 378:5c36325d6f60
       
     1 "
       
     2 stx:libscm - a new source code management library for Smalltalk/X
       
     3 Copyright (C) 2012-2013 Jan Vrany
       
     4 
       
     5 This library is free software; you can redistribute it and/or
       
     6 modify it under the terms of the GNU Lesser General Public
       
     7 License as published by the Free Software Foundation; either
       
     8 version 2.1 of the License. 
       
     9 
       
    10 This library is distributed in the hope that it will be useful,
       
    11 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    13 Lesser General Public License for more details.
       
    14 
       
    15 You should have received a copy of the GNU Lesser General Public
       
    16 License along with this library; if not, write to the Free Software
       
    17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    18 "
       
    19 "{ Package: 'stx:libscm/mercurial' }"
       
    20 
       
    21 HGCommandError subclass:#HGInvalidExecutableError
       
    22 	instanceVariableNames:''
       
    23 	classVariableNames:''
       
    24 	poolDictionaries:''
       
    25 	category:'SCM-Mercurial-Exceptions'
       
    26 !
       
    27 
       
    28 !HGInvalidExecutableError class methodsFor:'documentation'!
       
    29 
       
    30 copyright
       
    31 "
       
    32 stx:libscm - a new source code management library for Smalltalk/X
       
    33 Copyright (C) 2012-2013 Jan Vrany
       
    34 
       
    35 This library is free software; you can redistribute it and/or
       
    36 modify it under the terms of the GNU Lesser General Public
       
    37 License as published by the Free Software Foundation; either
       
    38 version 2.1 of the License. 
       
    39 
       
    40 This library is distributed in the hope that it will be useful,
       
    41 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    42 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    43 Lesser General Public License for more details.
       
    44 
       
    45 You should have received a copy of the GNU Lesser General Public
       
    46 License along with this library; if not, write to the Free Software
       
    47 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    48 "
       
    49 ! !
       
    50