25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

25 satır
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. }