exception.py 344 B

1234567891011121314
  1. # coding:utf-8
  2. import config
  3. class Test_URL_Fail(Exception):
  4. def __str__(self):
  5. str = "访问%s失败,请检查网络连接" % config.TEST_IP
  6. return str
  7. class Con_DB_Fail(Exception):
  8. def __str__(self):
  9. str = "使用DB_CONNECT_STRING:%s--连接数据库失败" % config.DB_CONNECT_STRING
  10. return str