Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgInvalidControlFileException.java @ 354:5f9073eabf06
Propagate errors with exceptions up to a end client
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 01 Dec 2011 05:21:40 +0100 |
parents | a0864b2892cd |
children | f52ca9530774 |
comparison
equal
deleted
inserted
replaced
353:0f3687e79f5a | 354:5f9073eabf06 |
---|---|
39 @Override | 39 @Override |
40 public HgInvalidControlFileException setFile(File file) { | 40 public HgInvalidControlFileException setFile(File file) { |
41 super.setFile(file); | 41 super.setFile(file); |
42 return this; | 42 return this; |
43 } | 43 } |
44 | |
45 @Override | |
46 public HgInvalidControlFileException setRevision(Nodeid r) { | |
47 super.setRevision(r); | |
48 return this; | |
49 } | |
44 } | 50 } |