mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
31 lines
535 B
Python
31 lines
535 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
class SupersetException(Exception):
|
|
status = 500
|
|
|
|
|
|
class SupersetTimeoutException(SupersetException):
|
|
pass
|
|
|
|
|
|
class SupersetSecurityException(SupersetException):
|
|
pass
|
|
|
|
|
|
class MetricPermException(SupersetException):
|
|
pass
|
|
|
|
|
|
class NoDataException(SupersetException):
|
|
status = 400
|
|
|
|
|
|
class SupersetTemplateException(SupersetException):
|
|
pass
|