UnsupportedCodecModeException.java :  » Graphic-Library » LaTeXDraw-2.0.8 » net » sourceforge » jiu » codecs » Java Open Source

Java Open Source » Graphic Library » LaTeXDraw 2.0.8 
LaTeXDraw 2.0.8 » net » sourceforge » jiu » codecs » UnsupportedCodecModeException.java
/*
 * UnsupportedCodecModeException
 * 
 * Copyright (c) 2002, 2003 Marco Schmidt.
 * All rights reserved.
 */

package net.sourceforge.jiu.codecs;

import net.sourceforge.jiu.ops.OperationFailedException;

/**
 * This exception is thrown when a codec does not support the
 * codec mode wanted by the user.
 * Example: A user gives an OutputStream to a codec, indicating that an
 * image is to be saved, but the codec only supports loading.
 * @author Marco Schmidt
 * @since 0.10.0
 */
public class UnsupportedCodecModeException extends OperationFailedException
{
  public UnsupportedCodecModeException(String message)
  {
    super(message);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.