Ejemplo n.º 1
0
 def __str__(self):
     if (isinstance(self.client_addr, unicode)):
         s = self.client_addr.encode('utf8')
     else:
         s = self.client_addr
     return "%s: %s: %s" % \
         (m2.err_func_error_string(self.err), \
          s, \
          m2.err_reason_error_string(self.err))
Ejemplo n.º 2
0
 def __str__(self):
     if (isinstance(self.client_addr, unicode)):
         s = self.client_addr.encode('utf8')
     else:
         s = self.client_addr
     return "%s: %s: %s" % \
         (m2.err_func_error_string(self.err), \
         s, \
         m2.err_reason_error_string(self.err))
Ejemplo n.º 3
0
def rsa_error():
    raise RSAError(m2.err_reason_error_string(m2.err_get_error()))
Ejemplo n.º 4
0
def get_error_reason(err):
    return m2.err_reason_error_string(err)
Ejemplo n.º 5
0
def rsa_error():
    raise RSAError, m2.err_reason_error_string(m2.err_get_error())
Ejemplo n.º 6
0
def ec_error():
    raise ECError, m2.err_reason_error_string(m2.err_get_error())
Ejemplo n.º 7
0
 def __str__(self):
     return "%s: %s: %s" % \
         (m2.err_func_error_string(self.err), \
         self.client_addr, \
         m2.err_reason_error_string(self.err))
Ejemplo n.º 8
0
def get_error_reason(err):
    return m2.err_reason_error_string(err)
Ejemplo n.º 9
0
def ec_error():
    raise ECError(m2.err_reason_error_string(m2.err_get_error()))