-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allowed for a shared browser between scenarios
- Loading branch information
1 parent
4e664e0
commit edb4432
Showing
2 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/com/octopus/exceptions/BrowserException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.octopus.exceptions; | ||
|
||
public class BrowserException extends RuntimeException { | ||
|
||
public BrowserException() { | ||
|
||
} | ||
|
||
public BrowserException(final String message) { | ||
super(message); | ||
} | ||
|
||
public BrowserException(final Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
public BrowserException(final String message, final Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |