diff --git a/pom.xml b/pom.xml index f169850..0b80732 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 appium - 2.0.0-beta3 + 2.0.0 ${project.groupId}:${project.artifactId} Automation Framework wrapped over Appium. https://github.com/WasiqB/coteafs-appium diff --git a/src/main/java/com/github/wasiqb/coteafs/appium/error/AppiumConfigFileNotFoundError.java b/src/main/java/com/github/wasiqb/coteafs/appium/error/AppiumConfigFileNotFoundError.java deleted file mode 100644 index fa3447e..0000000 --- a/src/main/java/com/github/wasiqb/coteafs/appium/error/AppiumConfigFileNotFoundError.java +++ /dev/null @@ -1,43 +0,0 @@ -/** - * Copyright (c) 2017, Wasiq Bhamla. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package com.github.wasiqb.coteafs.appium.error; - -/** - * @author wasiq.bhamla - * @since 04-May-2017 11:19:31 PM - */ -public class AppiumConfigFileNotFoundError extends CoteafsAppiumError { - private static final long serialVersionUID = 7619491487630973407L; - - /** - * @author wasiq.bhamla - * @since 04-May-2017 11:19:31 PM - * @param message - */ - public AppiumConfigFileNotFoundError (final String message) { - super (message); - } - - /** - * @author wasiq.bhamla - * @since 04-May-2017 11:19:31 PM - * @param message - * @param cause - */ - public AppiumConfigFileNotFoundError (final String message, final Throwable cause) { - super (message, cause); - } -} \ No newline at end of file diff --git a/src/main/java/com/github/wasiqb/coteafs/appium/error/AppiumConfigNotLoadedError.java b/src/main/java/com/github/wasiqb/coteafs/appium/error/AppiumConfigNotLoadedError.java deleted file mode 100644 index b4fecd9..0000000 --- a/src/main/java/com/github/wasiqb/coteafs/appium/error/AppiumConfigNotLoadedError.java +++ /dev/null @@ -1,43 +0,0 @@ -/** - * Copyright (c) 2017, Wasiq Bhamla. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package com.github.wasiqb.coteafs.appium.error; - -/** - * @author wasiq.bhamla - * @since 04-May-2017 11:22:34 PM - */ -public class AppiumConfigNotLoadedError extends CoteafsAppiumError { - private static final long serialVersionUID = 3051298544062173848L; - - /** - * @author wasiq.bhamla - * @since 04-May-2017 11:22:34 PM - * @param message - */ - public AppiumConfigNotLoadedError (final String message) { - super (message); - } - - /** - * @author wasiq.bhamla - * @since 04-May-2017 11:22:34 PM - * @param message - * @param cause - */ - public AppiumConfigNotLoadedError (final String message, final Throwable cause) { - super (message, cause); - } -} \ No newline at end of file