Skip to content

Commit

Permalink
TorController: Move exceptions to exceptions package
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Aug 2, 2023
1 parent 3e8ba31 commit ccb653a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
import bisq.tor.controller.events.events.HsDescUploadedEvent;
import bisq.tor.controller.events.listener.BootstrapEventListener;
import bisq.tor.controller.events.listener.HsDescUploadedEventListener;
import bisq.tor.controller.exceptions.HsDescUploadFailedException;
import bisq.tor.controller.exceptions.TorBootstrapFailedException;
import bisq.tor.process.NativeTorProcess;
import lombok.extern.slf4j.Slf4j;
import net.freehaven.tor.control.PasswordDigest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/

package bisq.tor.controller;
package bisq.tor.controller.exceptions;

public class HsDescUploadFailedException extends RuntimeException {
public HsDescUploadFailedException(String message) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/

package bisq.tor.controller;
package bisq.tor.controller.exceptions;

public class TorBootstrapFailedException extends RuntimeException {
public TorBootstrapFailedException(String message) {
Expand Down

0 comments on commit ccb653a

Please sign in to comment.