Exception_CantSetDataPoint.cs 291 B

12345678
  1. namespace System.Net.HomeMatic.Exceptions {
  2. public class Exception_CantSetDataPoint : Exception {
  3. public Exception_CantSetDataPoint(HMDataPoint DataPoint)
  4. : base("The DataPoint ("+DataPoint.Name+" of type "+DataPoint.DataType+") is read only") {
  5. }
  6. }
  7. }