1 11 package org.eclipse.jface.internal.text.revisions; 12 13 20 public final class LineIndexOutOfBoundsException extends IndexOutOfBoundsException { 21 private static final long serialVersionUID= 1L; 22 23 26 public LineIndexOutOfBoundsException() { 27 super(); 28 } 29 30 35 public LineIndexOutOfBoundsException(String s) { 36 super(s); 37 } 38 39 45 public LineIndexOutOfBoundsException(int index) { 46 super("Line index out of range: " + index); } 48 } 49 | Popular Tags |