Exception: HealthDataStandards::Export::PatientExportDataCriteriaException

Inherits:
Exception
  • Object
show all
Defined in:
lib/health-data-standards/export/exceptions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(string, patient, data_criteria, entries) ⇒ PatientExportDataCriteriaException

Returns a new instance of PatientExportDataCriteriaException.



5
6
7
8
9
10
# File 'lib/health-data-standards/export/exceptions.rb', line 5

def initialize(string, patient, data_criteria, entries)
  @patient = patient
  @data_criteria = data_criteria
  @entries = entries
  super(string)
end

Instance Attribute Details

#data_criteriaObject (readonly)

Returns the value of attribute data_criteria.



4
5
6
# File 'lib/health-data-standards/export/exceptions.rb', line 4

def data_criteria
  @data_criteria
end

#entriesObject (readonly)

Returns the value of attribute entries.



4
5
6
# File 'lib/health-data-standards/export/exceptions.rb', line 4

def entries
  @entries
end

#patientObject (readonly)

Returns the value of attribute patient.



4
5
6
# File 'lib/health-data-standards/export/exceptions.rb', line 4

def patient
  @patient
end