001package org.intellimate.izou.security.exceptions;
002
003/**
004 * The IzouSoundPermissionException is thrown when sound is attempted to be played without permission. This usually
005 * happens when another sound is currently being played to avoid 2.
006 */
007public class IzouSoundPermissionException extends IzouPermissionException {
008
009    /**
010     * Creates a new IzouSoundPermissionException
011     *
012     * @param message the message to send with the exception
013     */
014    public IzouSoundPermissionException(String message) {
015        super(message);
016    }
017}