You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: grails-plugin-controllers/src/main/groovy/org/codehaus/groovy/grails/compiler/web/ControllerActionTransformer.java
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -206,10 +206,12 @@ public void performInjectionOnAnnotatedClass(SourceUnit source, ClassNode classN
Copy file name to clipboardExpand all lines: grails-test-suite-web/src/test/groovy/org/codehaus/groovy/grails/web/controllers/ControllerExceptionHandlerSpec.groovy
+28-1Lines changed: 28 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@ import grails.test.mixin.TestFor
6
6
importjava.sql.BatchUpdateException
7
7
importjava.sql.SQLException
8
8
9
+
importjavax.xml.soap.SOAPException
10
+
9
11
importspock.lang.Issue
10
12
importspock.lang.Specification
11
13
@@ -93,6 +95,24 @@ class ControllerExceptionHandlerSpec extends Specification {
93
95
model.problemDescription =='A Number Was Invalid'
94
96
}
95
97
98
+
void'Test throwing an exception that does not have a handler'() {
0 commit comments