-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
206574b
commit e464419
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
class NotHangleException(Exception): | ||
def __init__(self): | ||
super().__init__("마지막 글자가 한글이 아닙니다.") | ||
|
||
class JosaTypeException(Exception): | ||
def __init__(self): | ||
super().__init__("메서드의 인자로 주어진 조사가 올바르지 않습니다.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name = 'pyjosa', | ||
version = '0.0.9', | ||
version = '0.0.10', | ||
description = '한국어 조사 처리 패키지', | ||
author = 'sehwan.kim', | ||
author_email = '[email protected]', | ||
|