001    /////////////////////////////////////////////////
002    // This file is part of Sears project.
003    // Subtitle Editor And Re-Synch
004    // A tool to easily modify and resynch movies subtitles.
005    /////////////////////////////////////////////////
006    //This program is free software; 
007    //you can redistribute it and/or modify it under the terms 
008    //of the GNU General Public License 
009    //as published by the Free Software Foundation; 
010    //either version 2 of the License, or (at your option) any later version.
011    /////////////////////////////////////////////////
012    //Sears project is available under sourceforge
013    // at adress: http://sourceforge.net/projects/sears/
014    //Copyright (C) 2005 Booba Skaya
015    //Mail: booba.skaya@gmail.com
016    ////////////////////////////////////////////////
017    package sears.tools.player;
018    
019    /**
020     * Class PlayerException.
021     * Summary:
022     * This class defines the player exception to play subtitled video files.
023     */
024    public class PlayerException extends Exception {
025            /**
026             * 
027             */
028            private static final long serialVersionUID = -3205931660785795744L;
029    
030            /**
031             * Constructs a new <tt>PlayerException</tt> object
032             * @param message       the detail message
033             */
034            public PlayerException(String message) {
035                    super(message);
036            }
037    }