Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

25 wiersze
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. }