您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

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