1 package org.apache.torque; 2 3 21 22 28 public class TooManyRowsException extends TorqueException 29 { 30 33 private static final long serialVersionUID = -2875429969148699158L; 34 35 39 public TooManyRowsException() 40 { 41 } 42 43 49 public TooManyRowsException(String msg) 50 { 51 super(msg); 52 } 53 54 61 public TooManyRowsException(Throwable nested) 62 { 63 super(nested); 64 } 65 66 74 public TooManyRowsException(String msg, Throwable nested) 75 { 76 super(msg, nested); 77 } 78 } 79 | Popular Tags |