package com.jsql.model.exception;
public class JSqlException extends Exception {
public JSqlException(String message) {
super(message);
}
public JSqlException(String message, Throwable e) {
super(message, e);
}
}package com.jsql.model.exception;
public abstract class SlidingException extends JSqlException { // <= Rename this class to remove "Exception" or correct its inheritance.
private String slidingWindowAllRows = "";
public SlidingException(String message) {
super(message);
}
public SlidingException(String message, Throwable e) {
super(message, e);
}
public void setSlidingWindowAllRows(String slidingWindowAllRows) {
this.slidingWindowAllRows = slidingWindowAllRows;
}
public String getSlidingWindowAllRows() {
return this.slidingWindowAllRows;
}
}package com.jsql.model.exception;
public class StoppedByUserException extends SlidingException { // <= Rename this class to remove "Exception" or correct its inheritance.
public StoppedByUserException() {
super("Stopped by user");
}
}package com.jsql.model.exception;
public class InjectionFailureException extends SlidingException { // <= Rename this class to remove "Exception" or correct its inheritance.
public InjectionFailureException() {
super("Execution stopped");
}
public InjectionFailureException(String message) {
super(message);
}
public InjectionFailureException(String message, Throwable e) {
super(message, e);
}
}--
You received this message because you are subscribed to the Google Groups "SonarQube" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarqube+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/ac358070-a667-4ecf-8896-ed42c3722f6b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
cd X:\Users\XXXXXXXX\git\jsql-injection
c:
E:\Dev\sonar-scanner-2.6.1\bin\sonar-scanner.bat
--
You received this message because you are subscribed to the Google Groups "SonarQube" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/01a5ace2-ba91-47fe-a3b0-47e91dadb170%40googlegroups.com.To unsubscribe from this group and stop receiving emails from it, send an email to sonarqube+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarqube+...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "SonarQube" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/fc0a6d42-fee0-4540-82e3-9e98e52ae484%40googlegroups.com.To unsubscribe from this group and stop receiving emails from it, send an email to sonarqube+unsubscribe@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "SonarQube" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarqube+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/685eb3de-f274-407f-9ad4-c2a20ed1682b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.