Skip to content

Commit

Permalink
fix(rooms): 방 크롤링 예외처리 추가 (#19)
Browse files Browse the repository at this point in the history
* fix(rooms): 방 크롤링 예외처리 추가

* fix(rooms): 예외처리 추가
  • Loading branch information
Mincheol Kim authored Jul 24, 2020
1 parent 038e496 commit 085ebe3
Show file tree
Hide file tree
Showing 9 changed files with 296 additions and 229 deletions.
9 changes: 8 additions & 1 deletion src/apps/rooms/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
class RoomNotFoundException(Exception):
from ...core.exceptions import CrawlingException, RepositoryException


class NoneTypeError(CrawlingException):
""" 값이 없습니다 """


class RoomNotFoundException(RepositoryException):
""" 방 매물 정보 없음 """
Loading

0 comments on commit 085ebe3

Please sign in to comment.