]> source.dussan.org Git - vaadin-framework.git/commitdiff
Details for exceptions that never happens
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 12 Apr 2011 07:39:21 +0000 (07:39 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 12 Apr 2011 07:39:21 +0000 (07:39 +0000)
svn changeset:18217/svn branch:6.5

src/com/vaadin/ui/Table.java

index af77edb56d7e0900f77af905f6fbad369e95cfcd..290aa1cf09809e269945c7a26f173b211219c7f4 100644 (file)
@@ -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);
             }
         }