Sha256: 333dbd04fe190c25c0722bc22eee9b38ad867572c44f489c1cafa7800451f855

Contents?: true

Size: 769 Bytes

Versions: 1

Compression:

Stored size: 769 Bytes

Contents

#
# This file was ported to ruby from Composer php source code file.
#
# Original Source: Composer\Json\JsonValidationException.php
# Ref SHA: 16578d1d01656ce7b694abd5517af44395cc53b3
#
# (c) Nils Adermann <naderman@naderman.de>
#     Jordi Boggiano <j.boggiano@seld.be>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

module Composer
  module Json

    # Represents a Json Validation error
    #
    # PHP Authors:
    # Jordi Boggiano <j.boggiano@seld.be>
    #
    # Ruby Authors:
    # Ioannis Kappas <ikappas@devworks.gr>
    class JsonValidationError < ::Composer::Error
      attr_reader :errors

      def initialize(errors)
        @errors = errors
      end
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
php-composer-1.0.0.pre.alpha11 lib/composer/json/json_validation_error.rb