mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
15 lines
402 B
Ruby
15 lines
402 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Bundler
|
|
class Resolver
|
|
class Incompatibility < PubGrub::Incompatibility
|
|
attr_reader :extended_explanation
|
|
|
|
def initialize(terms, cause:, custom_explanation: nil, extended_explanation: nil)
|
|
@extended_explanation = extended_explanation
|
|
|
|
super(terms, cause: cause, custom_explanation: custom_explanation)
|
|
end
|
|
end
|
|
end
|
|
end
|