Exception: Grafana::DashboardDoesNotExistError
- Inherits:
-
GrafanaError
- Object
- StandardError
- GrafanaError
- Grafana::DashboardDoesNotExistError
- Defined in:
- lib/grafana/errors.rb
Overview
Raised if a given dashboard does not exist in a specific Grafana instance.
Instance Method Summary collapse
-
#initialize(dashboard_uid) ⇒ DashboardDoesNotExistError
constructor
A new instance of DashboardDoesNotExistError.
Constructor Details
#initialize(dashboard_uid) ⇒ DashboardDoesNotExistError
Returns a new instance of DashboardDoesNotExistError.
14 15 16 |
# File 'lib/grafana/errors.rb', line 14 def initialize(dashboard_uid) super("The specified dashboard '#{dashboard_uid}' does not exist.") end |