Home | Trees | Indices | Help |
|
---|
|
1 # -*- coding: utf-8 -*- 2 3 # Copyright (C) 2010-2015 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> 4 # 5 # Python X2Go is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU Affero General Public License as published by 7 # the Free Software Foundation; either version 3 of the License, or 8 # (at your option) any later version. 9 # 10 # Python X2Go 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 13 # GNU Affero General Public License for more details. 14 # 15 # You should have received a copy of the GNU Affero General Public License 16 # along with this program; if not, write to the 17 # Free Software Foundation, Inc., 18 # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 19 20 """\ 21 Python X2Go exceptions. 22 23 """ 24 __NAME__ = 'x2goexceptions-pylib' 25 26 # modules 27 import paramiko 28 import exceptions 29 30 from defaults import X2GOCLIENT_OS as _X2GOCLIENT_OS 31 32 # Python X2Go Exceptions 33 AuthenticationException = paramiko.AuthenticationException 34 """inherited from Python Paramiko library""" 35 PasswordRequiredException = paramiko.PasswordRequiredException 36 """inherited from Python Paramiko library""" 37 BadHostKeyException = paramiko.BadHostKeyException 38 """inherited from Python Paramiko library""" 39 SSHException = paramiko.SSHException 40 """inherited from Python Paramiko library""" 41 73 if _X2GOCLIENT_OS != 'Windows': 74 # faking Windows errors on non-Windows systems... 76 77 # compat section 104
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 | http://epydoc.sourceforge.net |