Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

BootstrapException.java 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Sonar Standalone Runner
  3. * Copyright (C) 2011 SonarSource
  4. * dev@sonar.codehaus.org
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
  19. */
  20. package org.sonar.runner.internal.bootstrapper;
  21. /**
  22. * Exception thrown by the bootstrapper when something bad happens.
  23. */
  24. public class BootstrapException extends RuntimeException {
  25. private static final long serialVersionUID = -4974995497654796971L;
  26. /**
  27. * See {@link RuntimeException}
  28. */
  29. public BootstrapException(String message) {
  30. super(message);
  31. }
  32. /**
  33. * See {@link RuntimeException}
  34. */
  35. public BootstrapException(Throwable cause) {
  36. super(cause);
  37. }
  38. /**
  39. * See {@link RuntimeException}
  40. */
  41. public BootstrapException(String message, Throwable cause) {
  42. super(message, cause);
  43. }
  44. }