1
0

exception.py 342 B

12345678910111213141516
  1. #coding:utf-8
  2. import config
  3. class Test_URL_Fail(Exception):
  4. def __str__(self):
  5. str = "访问%s失败,请检查网络连接"%config.TEST_URL
  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