Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
12242 Visualizzazioni

Hello Community,

What is the diffrence between ValidationError and UserError when we want to show an error message ?

Thanks.

Avatar
Abbandona
Risposta migliore

ValidationError is explained very briefly in the source code (linked by Nijas Raphy) like this

class ValidationError(except_orm):
""" Violation of python constraints
Example: When you try to create a new user with a login which already exist in the db."""
def __init__(self, msg):
super(ValidationError, self).__init__(msg)


UserError is not really explained at all, but you can search the source code for examples (directly on github or do a "git grep UserError" if you have the repo locally which I highly recommend) and it will give you an idea.

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
2
lug 22
8275
0
set 24
1343
1
mar 15
10414
1
nov 22
7350
0
giu 21
6371