Fixed naming.

This commit is contained in:
Christian P. MOMON 2017-04-24 08:47:09 +02:00
parent e063099719
commit 3e91ccc342
3 changed files with 13 additions and 11 deletions

View file

@ -25,7 +25,7 @@ import org.apache.log4j.PropertyConfigurator;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import fr.devinsy.sikevadb.cli.SikevaCLI; import fr.devinsy.sikevadb.cli.SikevaDBCLI;
/** /**
* This class Siba stands for Simple Backup. This is the main class. * This class Siba stands for Simple Backup. This is the main class.
@ -72,7 +72,7 @@ public final class SikevaDBLauncher
} }
else else
{ {
SikevaCLI.run(args); SikevaDBCLI.run(args);
} }
} }
} }

View file

@ -36,14 +36,14 @@ import fr.devinsy.util.strings.StringList;
* *
* *
*/ */
public final class SikevaCLI public final class SikevaDBCLI
{ {
private static Logger logger = LoggerFactory.getLogger(SikevaCLI.class); private static Logger logger = LoggerFactory.getLogger(SikevaDBCLI.class);
/** /**
* *
*/ */
private SikevaCLI() private SikevaDBCLI()
{ {
} }
@ -86,7 +86,7 @@ public final class SikevaCLI
} }
// Run. // Run.
SikevaCLI.run(args); SikevaDBCLI.run(args);
} }
/** /**

View file

@ -18,17 +18,19 @@
*/ */
package fr.devinsy.sikevadb.cli; package fr.devinsy.sikevadb.cli;
import fr.devinsy.sikevadb.core.SikevaDBException;
/** /**
* *
*/ */
public class SikevaCLIException extends Exception public class SikevaDBCLIException extends SikevaDBException
{ {
private static final long serialVersionUID = 2986878456227891377L; private static final long serialVersionUID = 2986878456227891377L;
/** /**
* *
*/ */
public SikevaCLIException() public SikevaDBCLIException()
{ {
super(); super();
} }
@ -37,7 +39,7 @@ public class SikevaCLIException extends Exception
* *
* @param message * @param message
*/ */
public SikevaCLIException(final String message) public SikevaDBCLIException(final String message)
{ {
super(message); super(message);
} }
@ -47,7 +49,7 @@ public class SikevaCLIException extends Exception
* @param message * @param message
* @param cause * @param cause
*/ */
public SikevaCLIException(final String message, final Throwable cause) public SikevaDBCLIException(final String message, final Throwable cause)
{ {
super(message, cause); super(message, cause);
} }
@ -56,7 +58,7 @@ public class SikevaCLIException extends Exception
* *
* @param cause * @param cause
*/ */
public SikevaCLIException(final Throwable cause) public SikevaDBCLIException(final Throwable cause)
{ {
super(cause); super(cause);
} }