Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Standard/ConversionException.cs
===================================================================
diff -u -r3893 -r4000
--- DamEngine/trunk/src/Deltares.DamEngine.Data/Standard/ConversionException.cs (.../ConversionException.cs) (revision 3893)
+++ DamEngine/trunk/src/Deltares.DamEngine.Data/Standard/ConversionException.cs (.../ConversionException.cs) (revision 4000)
@@ -27,7 +27,7 @@
/// Exception class for conversion
///
///
- public class ConversionException: Exception
+ public class ConversionException : Exception
{
private const string MessagePattern = "Couldn't convert '{0}' to type {1}";
@@ -36,7 +36,7 @@
///
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
- public ConversionException(string message, Exception innerException) : base(message, innerException) { }
+ public ConversionException(string message, Exception innerException) : base(message, innerException) {}
///
/// Initializes a new instance of the class.
@@ -45,6 +45,6 @@
/// The value.
/// The inner.
public ConversionException(Type type, object value, Exception inner)
- : base(string.Format(MessagePattern, value, type.Name), inner) { }
+ : base(string.Format(MessagePattern, value, type.Name), inner) {}
}
-}
+}
\ No newline at end of file