Remove unnecessary "throws" declarations

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=201058582
This commit is contained in:
mcilwain
2018-06-18 18:17:56 -04:00
committed by Ben McIlwain
parent a7256f5edd
commit 5d80f124ca
377 changed files with 2297 additions and 2373 deletions
@@ -139,7 +139,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_badContactPassword() throws Exception {
public void testFailure_badContactPassword() {
// Change the contact's password so it does not match the password in the file.
contact = persistResource(
contact.asBuilder()
@@ -153,7 +153,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_neverBeenTransferred() throws Exception {
public void testFailure_neverBeenTransferred() {
changeTransferStatus(null);
EppException thrown =
assertThrows(
@@ -162,7 +162,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_clientApproved() throws Exception {
public void testFailure_clientApproved() {
changeTransferStatus(TransferStatus.CLIENT_APPROVED);
EppException thrown =
assertThrows(
@@ -171,7 +171,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_clientRejected() throws Exception {
public void testFailure_clientRejected() {
changeTransferStatus(TransferStatus.CLIENT_REJECTED);
EppException thrown =
assertThrows(
@@ -180,7 +180,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_clientCancelled() throws Exception {
public void testFailure_clientCancelled() {
changeTransferStatus(TransferStatus.CLIENT_CANCELLED);
EppException thrown =
assertThrows(
@@ -189,7 +189,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_serverApproved() throws Exception {
public void testFailure_serverApproved() {
changeTransferStatus(TransferStatus.SERVER_APPROVED);
EppException thrown =
assertThrows(
@@ -198,7 +198,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_serverCancelled() throws Exception {
public void testFailure_serverCancelled() {
changeTransferStatus(TransferStatus.SERVER_CANCELLED);
EppException thrown =
assertThrows(
@@ -207,7 +207,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_gainingClient() throws Exception {
public void testFailure_gainingClient() {
setClientIdForFlow("NewRegistrar");
EppException thrown =
assertThrows(
@@ -216,7 +216,7 @@ public class ContactTransferApproveFlowTest
}
@Test
public void testFailure_unrelatedClient() throws Exception {
public void testFailure_unrelatedClient() {
setClientIdForFlow("ClientZ");
EppException thrown =
assertThrows(