All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.varmateo.yawg.core.FileBakerException Maven / Gradle / Ivy

/**************************************************************************
 *
 * Copyright (c) 2020 Yawg project contributors.
 *
 **************************************************************************/

package com.varmateo.yawg.core;

import com.varmateo.yawg.api.YawgException;


/**
 *
 */
/* default */ final class FileBakerException
        extends YawgException {


    private FileBakerException(final String msg) {

        super(msg);
    }


    /**
     *
     */
    public static FileBakerException unknownBakerType(final String bakerType) {

        final String msg = String.format("Unknown baker type \"%s\"", bakerType);

        return new FileBakerException(msg);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy