001package org.intellimate.izou.security.exceptions; 002 003/** 004 * Created by julianbrendl on 5/9/15. 005 */ 006public class IzouSocketPermissionException extends IzouPermissionException { 007 008 /** 009 * Creates a new IzouSocketPermissionException 010 * 011 * @param message the message to send with the exception 012 */ 013 public IzouSocketPermissionException(String message) { 014 super(message); 015 } 016}