comparison src/org/tmatesoft/hg/core/HgInvalidControlFileException.java @ 348:a0864b2892cd

Expose errors reading mercurial control files with exception
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 24 Nov 2011 02:57:03 +0100
parents 3d41dc148d14
children 5f9073eabf06
comparison
equal deleted inserted replaced
347:8da7ade36c57 348:a0864b2892cd
34 34
35 public HgInvalidControlFileException(String message, Throwable th, File file) { 35 public HgInvalidControlFileException(String message, Throwable th, File file) {
36 super(message, th, file); 36 super(message, th, file);
37 } 37 }
38 38
39 @Override
40 public HgInvalidControlFileException setFile(File file) {
41 super.setFile(file);
42 return this;
43 }
39 } 44 }