Skip to content

Commit bbb8dc3

Browse files
committed
Update both version
* Update exception tags
1 parent ed0d986 commit bbb8dc3

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

dev.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_editor_dev"
9-
version = "0.0.230"
9+
version = "0.0.231"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]

je_editor/utils/exception/exception_tags.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,32 @@
55
"""
66
init exception
77
"""
8-
je_editor_init_error: str = "JEditor can't init"
9-
je_editor_init_exec_manager_exception: str = "JEditor can't init program manager"
8+
je_editor_init_error: str = "JEditor failed to initialize"
9+
je_editor_init_exec_manager_exception: str = "JEditor failed to initialize the program manager"
1010
"""
1111
exec exception
1212
"""
13-
je_editor_exec_error: str = "JEditor exec error"
13+
je_editor_exec_error: str = "JEditor execution error"
1414
file_not_fond_error: str = "File not found"
1515
compiler_not_found_error: str = "Compiler not found"
1616
"""
1717
shell exception
1818
"""
19-
je_editor_shell_error: str = "JEditor run on shell error"
19+
je_editor_shell_error: str = "JEditor shell execution error"
2020
"""
2121
file exception
2222
"""
23-
je_editor_save_file_error: str = "JEditor save file error"
24-
je_editor_open_file_error: str = "JEditor open file error"
23+
je_editor_save_file_error: str = "JEditor failed to save file"
24+
je_editor_open_file_error: str = "JEditor failed to open file"
2525
"""
2626
json exception
2727
"""
28-
cant_reformat_json_error: str = "Can't reformat json is type right?"
29-
wrong_json_data_error: str = "Can't parser json"
30-
cant_find_json_error: str = "cant find json file"
31-
cant_save_json_error: str = "cant save json file"
28+
cant_reformat_json_error: str = "Cannot reformat JSON: is the type correct?"
29+
wrong_json_data_error: str = "Failed to parse JSON"
30+
cant_find_json_error: str = "Can't find JSON file"
31+
cant_save_json_error: str = "Can't save JSON file"
3232
"""
3333
content data error
3434
"""
35-
content_set_compiler_error: str = "When set compiler using content make an error"
36-
je_editor_content_file_error: str = "JEditor content file error"
35+
content_set_compiler_error: str = "Error setting compiler using content"
36+
je_editor_content_file_error: str = "JEditor content file error"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_editor"
9-
version = "0.0.209"
9+
version = "0.0.210"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]

0 commit comments

Comments
 (0)