'''
''' An error for when a configuration is erronous.
'''
Public Class ConfigurationException
Inherits System.ApplicationException
'''
Sub New(message As String)
MyBase.New($"There is a problem with the configuration file(s) or other configuration: {vbNewLine}{message}")
End Sub
'''
Sub New(message As String, innerException As Exception)
MyBase.New($"There is a problem with the configuration file(s) or other configuration: {vbNewLine}{message}", innerException)
End Sub
End Class