From cfd42b97c659a1c584767e811642cda5526e9c74 Mon Sep 17 00:00:00 2001 From: Guilherme Alan Ritter Date: Tue, 10 Jul 2018 10:30:56 -0300 Subject: [PATCH] typo: Exeption Previously committed to wrong branch. Sorry... --- src/docs/asciidoc/data-access.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/data-access.adoc b/src/docs/asciidoc/data-access.adoc index 64d2e7145f0..904c2bf052d 100644 --- a/src/docs/asciidoc/data-access.adoc +++ b/src/docs/asciidoc/data-access.adoc @@ -1835,7 +1835,7 @@ Code within the callback can roll the transaction back by calling the try { updateOperation1(); updateOperation2(); - } catch (SomeBusinessExeption ex) { + } catch (SomeBusinessException ex) { **status.setRollbackOnly();** } }