UnknownFileType.java

/*
 * Copyright © 2026 The CTAN Team and individual authors
 *
 * This file is distributed under the 3-clause BSD license.
 * See file LICENSE for details.
 */

package org.ctan.site.services.texarchive;

import java.io.IOException;

/**
 * The class <code>UnknownFileType</code> contains the exception for an
 * undefined file type.
 *
 * @author <a href="mailto:gene@ctan.org">Gerd Neugebauer</a>
 */
public class UnknownFileType extends IOException {

    /**
     * The field <code>serialVersionUID</code> contains the version number.
     */
    private static final long serialVersionUID = 1L;

    /**
     * This is the constructor for <code>UnknownFileType</code>.
     *
     * @param message the message
     */
    public UnknownFileType(String message) {

        super(message);
    }

}