2020-10-27 00:50:13 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-28 04:04:26 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 - present Instructure, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of Canvas.
|
|
|
|
#
|
|
|
|
# Canvas is free software: you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU Affero General Public License as published by the Free
|
|
|
|
# Software Foundation, version 3 of the License.
|
|
|
|
#
|
|
|
|
# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License along
|
|
|
|
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-11-17 02:07:54 +08:00
|
|
|
module Lti
|
|
|
|
module Errors
|
|
|
|
class UnauthorizedError < StandardError; end
|
2021-09-23 00:25:11 +08:00
|
|
|
|
2016-11-17 02:07:54 +08:00
|
|
|
class UnsupportedExportTypeError < StandardError; end
|
2021-09-23 00:25:11 +08:00
|
|
|
|
2016-11-17 02:07:54 +08:00
|
|
|
class UnsupportedMessageTypeError < StandardError; end
|
2021-09-23 00:25:11 +08:00
|
|
|
|
2020-12-22 03:14:49 +08:00
|
|
|
class UnsupportedPlacement < StandardError; end
|
2021-09-23 00:25:11 +08:00
|
|
|
|
2016-11-17 02:07:54 +08:00
|
|
|
class InvalidMediaTypeError < StandardError; end
|
2021-09-23 00:25:11 +08:00
|
|
|
|
2017-09-14 01:46:43 +08:00
|
|
|
class UnauthorizedToolError < StandardError; end
|
2021-09-23 00:25:11 +08:00
|
|
|
|
2021-01-14 05:09:58 +08:00
|
|
|
class InvalidLaunchUrlError < StandardError; end
|
2016-11-17 02:07:54 +08:00
|
|
|
end
|
|
|
|
end
|