@@ -16,15 +16,17 @@ public class BulkheadRejectedException : ExecutionRejectedException
1616 /// <summary>
1717 /// Initializes a new instance of the <see cref="BulkheadRejectedException" /> class.
1818 /// </summary>
19- public BulkheadRejectedException ( ) : this ( "The bulkhead semaphore and queue are full and execution was rejected." )
19+ public BulkheadRejectedException ( )
20+ : this ( "The bulkhead semaphore and queue are full and execution was rejected." )
2021 {
2122 }
2223
2324 /// <summary>
2425 /// Initializes a new instance of the <see cref="BulkheadRejectedException"/> class.
2526 /// </summary>
2627 /// <param name="message">The message.</param>
27- public BulkheadRejectedException ( string message ) : base ( message )
28+ public BulkheadRejectedException ( string message )
29+ : base ( message )
2830 {
2931 }
3032
@@ -33,7 +35,8 @@ public BulkheadRejectedException(string message) : base(message)
3335 /// </summary>
3436 /// <param name="message">The message.</param>
3537 /// <param name="innerException">The inner exception.</param>
36- public BulkheadRejectedException ( string message , Exception innerException ) : base ( message , innerException )
38+ public BulkheadRejectedException ( string message , Exception innerException )
39+ : base ( message , innerException )
3740 {
3841 }
3942
@@ -44,7 +47,8 @@ public BulkheadRejectedException(string message, Exception innerException) : bas
4447 /// </summary>
4548 /// <param name="info">The information.</param>
4649 /// <param name="context">The context.</param>
47- protected BulkheadRejectedException ( SerializationInfo info , StreamingContext context ) : base ( info , context )
50+ protected BulkheadRejectedException ( SerializationInfo info , StreamingContext context )
51+ : base ( info , context )
4852 {
4953 }
5054#endif
0 commit comments