PageRenderTime 62ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/JavaInsight/javainsight/buildtools/ChainedIOException.java

#
Java | 57 lines | 22 code | 8 blank | 27 comment | 0 complexity | 53918e055cef51daea1f76ba1ac61ca5 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /*
  2. * ChainedIOException.java
  3. * Copyright (c) 2007 Dirk Moebius
  4. *
  5. * jEdit edit mode settings:
  6. * :mode=java:tabSize=4:indentSize=4:noTabs=true:maxLineLen=0:
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. package javainsight.buildtools;
  23. import java.io.IOException;
  24. /**
  25. * Chained IOException (Java1.4+).
  26. *
  27. * @author Dirk Moebius
  28. * @version $Id$
  29. */
  30. public class ChainedIOException extends IOException
  31. {
  32. private final Throwable cause;
  33. public ChainedIOException(String message) {
  34. super(message);
  35. this.cause = null;
  36. }
  37. public ChainedIOException(String message, Throwable cause) {
  38. super(message);
  39. this.cause = cause;
  40. }
  41. public ChainedIOException(Throwable cause) {
  42. super();
  43. this.cause = cause;
  44. }
  45. @Override
  46. public Throwable getCause() {
  47. return cause;
  48. }
  49. }