RemoteOperationFailedException.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. package com.owncloud.android.operations;
  2. /**
  3. * RuntimeException for throwing errors of remote operation calls.
  4. */
  5. public class RemoteOperationFailedException extends RuntimeException {
  6. private static final long serialVersionUID = 5429778514835938713L;
  7. /**
  8. * Constructs a new runtime exception with the specified detail message and
  9. * cause.
  10. *
  11. * @param message the detail message (which is saved for later retrieval
  12. * by the {@link #getMessage()} method).
  13. * @param cause the cause (which is saved for later retrieval by the
  14. * {@link #getCause()} method). (A <code>null</code> value
  15. * is permitted, and indicates that the cause is nonexistent
  16. * or unknown.)
  17. */
  18. public RemoteOperationFailedException(String message, Throwable cause) {
  19. super(message + " / " + cause.getMessage(), cause);
  20. }
  21. /**
  22. * Constructs a new runtime exception with the specified detail message and
  23. * cause.
  24. *
  25. * @param message the detail message (which is saved for later retrieval
  26. * by the {@link #getMessage()} method).
  27. */
  28. public RemoteOperationFailedException(String message) {
  29. super(message);
  30. }
  31. }