You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
544 B

  1. using System;
  2. using System.Runtime.Serialization;
  3. namespace SUISSEngine
  4. {
  5. public class PropertyListSerializationException : Exception
  6. {
  7. public PropertyListSerializationException()
  8. {
  9. }
  10. public PropertyListSerializationException(string message) : base(message)
  11. {
  12. }
  13. public PropertyListSerializationException(string message, Exception inner) : base(message, inner)
  14. {
  15. }
  16. protected PropertyListSerializationException(SerializationInfo info, StreamingContext context) : base(info, context)
  17. {
  18. }
  19. }
  20. }