~lottanzb/lottanzb/trunk-packaging-9.10

« back to all changes in this revision

Viewing changes to lottanzb/backend/sessions/errors.py

  • Committer: Severin Heiniger
  • Date: 2010-09-03 15:05:11 UTC
  • mfrom: (1212.1.209 trunk)
  • Revision ID: severinheiniger@gmail.com-20100903150511-rhpcpr3td53h4ihm
Sync with main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    "SessionUnknownError",
23
23
    "SessionConnectionError",
24
24
    "SessionNoExecutableError",
 
25
    "SessionNoServerError",
25
26
    "SessionPermissionError",
26
27
    "SessionImportError"
27
28
]
72
73
    message = _("Could not find the SABnzbd executable.")
73
74
 
74
75
 
 
76
class SessionNoServerError(SessionStartError):
 
77
    message = _("No news server has been specified.")
 
78
 
 
79
 
75
80
class SessionPermissionError(SessionStartError):
76
81
    message = _("Not allowed to launch SABnzbd.")
77
82