summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2011-04-12 07:39:21 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2011-04-12 07:39:21 +0000
commita44dd0fe3a9f22be89a5ce5e787e43f08ffe8568 (patch)
tree0e2241aaa4f0ad433cf7d37436dbff2399052818 /src
parenta4a48cae915235cef85d6aca3b824a4d8265d195 (diff)
downloadvaadin-framework-a44dd0fe3a9f22be89a5ce5e787e43f08ffe8568.tar.gz
vaadin-framework-a44dd0fe3a9f22be89a5ce5e787e43f08ffe8568.zip
Details for exceptions that never happens
svn changeset:18217/svn branch:6.5
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/ui/Table.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java
index af77edb56d..290aa1cf09 100644
--- a/src/com/vaadin/ui/Table.java
+++ b/src/com/vaadin/ui/Table.java
@@ -3853,7 +3853,7 @@ public class Table extends AbstractSelect implements Action.Container,
new Class[] { HeaderClickEvent.class });
} catch (final java.lang.NoSuchMethodException e) {
// This should never happen
- throw new java.lang.RuntimeException();
+ throw new java.lang.RuntimeException(e);
}
}
@@ -3893,7 +3893,7 @@ public class Table extends AbstractSelect implements Action.Container,
new Class[] { FooterClickEvent.class });
} catch (final java.lang.NoSuchMethodException e) {
// This should never happen
- throw new java.lang.RuntimeException();
+ throw new java.lang.RuntimeException(e);
}
}
@@ -4084,7 +4084,7 @@ public class Table extends AbstractSelect implements Action.Container,
new Class[] { ColumnResizeEvent.class });
} catch (final java.lang.NoSuchMethodException e) {
// This should never happen
- throw new java.lang.RuntimeException();
+ throw new java.lang.RuntimeException(e);
}
}
@@ -4193,7 +4193,7 @@ public class Table extends AbstractSelect implements Action.Container,
new Class[] { ColumnReorderEvent.class });
} catch (final java.lang.NoSuchMethodException e) {
// This should never happen
- throw new java.lang.RuntimeException();
+ throw new java.lang.RuntimeException(e);
}
}