Skip to content

Commit 6cb71f0

Browse files
committed
fix throw stack
1 parent e6ada0b commit 6cb71f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/namespace/NamespaceExample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private static async Task DeleteAsync(IKubernetes client, string name, int delay
4343
return;
4444
}
4545

46-
throw ex;
46+
throw;
4747
}
4848
}
4949
}
@@ -54,7 +54,7 @@ private static async Task DeleteAsync(IKubernetes client, string name, int delay
5454
return;
5555
}
5656

57-
throw ex;
57+
throw;
5858
}
5959
}
6060
}

0 commit comments

Comments
 (0)