Exception: Grafana::PanelDoesNotExistError
- Inherits:
-
GrafanaError
- Object
- StandardError
- GrafanaError
- Grafana::PanelDoesNotExistError
- Defined in:
- lib/grafana/errors.rb
Overview
Instance Method Summary collapse
-
#initialize(panel_id, dashboard) ⇒ PanelDoesNotExistError
constructor
A new instance of PanelDoesNotExistError.
Constructor Details
#initialize(panel_id, dashboard) ⇒ PanelDoesNotExistError
Returns a new instance of PanelDoesNotExistError.
23 24 25 |
# File 'lib/grafana/errors.rb', line 23 def initialize(panel_id, dashboard) super("The specified panel id '#{panel_id}' does not exist on the dashboard '#{dashboard.id}'.") end |