Sha256: 8ac3fd2c3b56a418d6051b4362d1d2405e7d6493aac70c4ff3c91ba7964efdb1

Contents?: true

Size: 980 Bytes

Versions: 4

Compression:

Stored size: 980 Bytes

Contents

# -*- mode: ruby; coding: utf-8-unix -*-
#
# Copyright 2009 Naoto Takai
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module ObjectInjection
  class ObjectInjectionError < StandardError; end

  class CircularReferenceError < ObjectInjectionError; end
  class ContainerError < ObjectInjectionError; end
  class DefinitionError < ObjectInjectionError; end
  class DependencyNotFoundError < ObjectInjectionError; end
  class DuplicateDefinitionError < ObjectInjectionError; end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
takai-object-injection-0.1.1 lib/object-injection/errors.rb
takai-object-injection-0.1.2 lib/object-injection/errors.rb
takai-object-injection-1.0.3 lib/object-injection/errors.rb
takai-object_injection-0.1.1 lib/object_injection/errors.rb