> +   private String destinationPath;
> +
> +   public CopyObjectException() {
> +      super();
> +   }
> +
> +   public CopyObjectException(String sourcePath, String destinationPath, 
> String message) {
> +      super(String.format("Either the source path %s or the destination path 
> %s was not found. " +
> +                     "(message: %s)", sourcePath, destinationPath, message));
> +      this.sourcePath = sourcePath;
> +      this.destinationPath = destinationPath;
> +   }
> +
> +   public CopyObjectException(Exception from) {
> +      super(from);
> +   }

What is this needed for?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/73/files#r8709648

Reply via email to