com.github.wasiqb.coteafs.selenium.error.DriverNotSetupError Maven / Gradle / Ivy
/*
* Copyright (c) 2019, 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.selenium.error;
import com.github.wasiqb.coteafs.error.CoteafsError;
import com.github.wasiqb.coteafs.error.enums.Category;
import com.github.wasiqb.coteafs.error.enums.Reason;
import com.github.wasiqb.coteafs.error.enums.Severity;
/**
* @author Wasiq Bhamla
* @since 03-Aug-2019
*/
public class DriverNotSetupError extends CoteafsError {
private static final long serialVersionUID = -8652506910306288004L;
/**
* @param message
*
* @author Wasiq Bhamla
* @since 03-Aug-2019
*/
public DriverNotSetupError (final String message) {
super (message, Reason.R1, Category.C1, Severity.HIGH);
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy