9 changed files with 31 additions and 9 deletions
@ -1,4 +1,6 @@ |
|||||
package app.annotations.exceptions; |
package app.annotations.exceptions; |
||||
|
|
||||
public class FailedAuthCheck extends RuntimeException{ |
import app.exceptions.BaseWebException; |
||||
|
|
||||
|
public class FailedAuthCheck extends BaseWebException { |
||||
} |
} |
||||
|
@ -1,4 +1,6 @@ |
|||||
package app.annotations.exceptions; |
package app.annotations.exceptions; |
||||
|
|
||||
public class InvalidCookie extends RuntimeException{ |
import app.exceptions.BaseWebException; |
||||
|
|
||||
|
public class InvalidCookie extends BaseWebException { |
||||
} |
} |
||||
|
@ -1,4 +1,6 @@ |
|||||
package app.annotations.exceptions; |
package app.annotations.exceptions; |
||||
|
|
||||
public class InvalidSecretKey extends RuntimeException{ |
import app.exceptions.BaseWebException; |
||||
|
|
||||
|
public class InvalidSecretKey extends BaseWebException { |
||||
} |
} |
||||
|
@ -1,4 +1,6 @@ |
|||||
package app.annotations.exceptions; |
package app.annotations.exceptions; |
||||
|
|
||||
public class LowPermition extends RuntimeException{ |
import app.exceptions.BaseWebException; |
||||
|
|
||||
|
public class LowPermition extends BaseWebException { |
||||
} |
} |
||||
|
@ -1,4 +1,6 @@ |
|||||
package app.annotations.exceptions; |
package app.annotations.exceptions; |
||||
|
|
||||
public class NeedCookie extends RuntimeException{ |
import app.exceptions.BaseWebException; |
||||
|
|
||||
|
public class NeedCookie extends BaseWebException { |
||||
} |
} |
||||
|
@ -1,4 +1,6 @@ |
|||||
package app.annotations.exceptions; |
package app.annotations.exceptions; |
||||
|
|
||||
public class WaitRateLimit extends RuntimeException { |
import app.exceptions.BaseWebException; |
||||
|
|
||||
|
public class WaitRateLimit extends BaseWebException { |
||||
} |
} |
||||
|
@ -0,0 +1,4 @@ |
|||||
|
package app.exceptions; |
||||
|
|
||||
|
public abstract class BaseWebException extends RuntimeException { |
||||
|
} |
Loading…
Reference in new issue