File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
33using System . Linq ;
4+ using System . Runtime . Serialization ;
45using System . Text ;
56using System . Threading . Tasks ;
6-
77namespace CodeIsle . LibIpsNet . Exceptions
88{
9- public class Ips16MBException : ApplicationException
9+ [ Serializable ]
10+ public class Ips16MBException : Exception
1011 {
12+ public Ips16MBException ( )
13+ : base ( ) { }
14+
15+ public Ips16MBException ( string message )
16+ : base ( message ) { }
17+
18+ public Ips16MBException ( string format , params object [ ] args )
19+ : base ( string . Format ( format , args ) ) { }
20+
21+ public Ips16MBException ( string message , Exception innerException )
22+ : base ( message , innerException ) { }
23+
24+ public Ips16MBException ( string format , Exception innerException , params object [ ] args )
25+ : base ( string . Format ( format , args ) , innerException ) { }
1126
27+ protected Ips16MBException ( SerializationInfo info , StreamingContext context )
28+ : base ( info , context ) { }
1229 }
1330}
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
33using System . Linq ;
4+ using System . Runtime . Serialization ;
45using System . Text ;
56using System . Threading . Tasks ;
67
78namespace CodeIsle . LibIpsNet . Exceptions
89{
9- public class IpsIdenticalException : ApplicationException
10+ [ Serializable ]
11+ public class IpsIdenticalException : Exception
1012 {
13+ public IpsIdenticalException ( )
14+ : base ( ) { }
15+
16+ public IpsIdenticalException ( string message )
17+ : base ( message ) { }
18+
19+ public IpsIdenticalException ( string format , params object [ ] args )
20+ : base ( string . Format ( format , args ) ) { }
21+
22+ public IpsIdenticalException ( string message , Exception innerException )
23+ : base ( message , innerException ) { }
24+
25+ public IpsIdenticalException ( string format , Exception innerException , params object [ ] args )
26+ : base ( string . Format ( format , args ) , innerException ) { }
27+
28+ protected IpsIdenticalException ( SerializationInfo info , StreamingContext context )
29+ : base ( info , context ) { }
1130 }
1231}
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
33using System . Linq ;
4+ using System . Runtime . Serialization ;
45using System . Text ;
56using System . Threading . Tasks ;
67
78namespace CodeIsle . LibIpsNet . Exceptions
89{
9- public class IpsInvalidException : ApplicationException
10+ [ Serializable ]
11+ public class IpsInvalidException : Exception
1012 {
13+ public IpsInvalidException ( )
14+ : base ( ) { }
15+
16+ public IpsInvalidException ( string message )
17+ : base ( message ) { }
18+
19+ public IpsInvalidException ( string format , params object [ ] args )
20+ : base ( string . Format ( format , args ) ) { }
21+
22+ public IpsInvalidException ( string message , Exception innerException )
23+ : base ( message , innerException ) { }
24+
25+ public IpsInvalidException ( string format , Exception innerException , params object [ ] args )
26+ : base ( string . Format ( format , args ) , innerException ) { }
27+
28+ protected IpsInvalidException ( SerializationInfo info , StreamingContext context )
29+ : base ( info , context ) { }
1130 }
1231}
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
33using System . Linq ;
4+ using System . Runtime . Serialization ;
45using System . Text ;
56using System . Threading . Tasks ;
67
78namespace CodeIsle . LibIpsNet . Exceptions
89{
9- public class IpsNotThisException : ApplicationException
10+ [ Serializable ]
11+ public class IpsNotThisException : Exception
1012 {
13+ public IpsNotThisException ( )
14+ : base ( ) { }
15+
16+ public IpsNotThisException ( string message )
17+ : base ( message ) { }
18+
19+ public IpsNotThisException ( string format , params object [ ] args )
20+ : base ( string . Format ( format , args ) ) { }
21+
22+ public IpsNotThisException ( string message , Exception innerException )
23+ : base ( message , innerException ) { }
24+
25+ public IpsNotThisException ( string format , Exception innerException , params object [ ] args )
26+ : base ( string . Format ( format , args ) , innerException ) { }
27+
28+ protected IpsNotThisException ( SerializationInfo info , StreamingContext context )
29+ : base ( info , context ) { }
1130 }
1231}
Original file line number Diff line number Diff line change 33using System . Linq ;
44using System . Text ;
55using System . Threading . Tasks ;
6-
6+ using System . Runtime . Serialization ;
77namespace CodeIsle . LibIpsNet . Exceptions
88{
9- public class IpsScrambledException : ApplicationException
9+ [ Serializable ]
10+ public class IpsScrambledException : Exception
1011 {
12+ public IpsScrambledException ( )
13+ : base ( ) { }
14+
15+ public IpsScrambledException ( string message )
16+ : base ( message ) { }
17+
18+ public IpsScrambledException ( string format , params object [ ] args )
19+ : base ( string . Format ( format , args ) ) { }
20+
21+ public IpsScrambledException ( string message , Exception innerException )
22+ : base ( message , innerException ) { }
23+
24+ public IpsScrambledException ( string format , Exception innerException , params object [ ] args )
25+ : base ( string . Format ( format , args ) , innerException ) { }
26+
27+ protected IpsScrambledException ( SerializationInfo info , StreamingContext context )
28+ : base ( info , context ) { }
1129 }
1230}
You can’t perform that action at this time.
0 commit comments