// File: /include/js/Shared/Views/Exceptions.js
// Desc: View exceptions
// $Revision: 4$
// $Date: 5/14/2007 12:10:35 PM$
// $Author: Donnie Tognazzini$
// $NoKeywords$

function VM_EX_MediaPlayerInvalidCursor( cursor, callDurationSeconds )
{
    EXT_extend( this, new CWError( 'VM_EX_MediaPlayerInvalidCursor', 'Cursor=' + cursor + '; Call duration=' + callDurationSeconds ) );
}

function VM_EX_MediaPlayerInvalidCallDuration( callDurationSeconds )
{
    EXT_extend( this, new CWError( 'VM_EX_MediaPlayerInvalidCallDuration', 'Call duration=' + callDurationSeconds ) );
}

function VM_EX_StylesheetNotFound( styleSheet, message )
{
    EXT_extend( this, new CWError( 'VM_EX_StylesheetNotFound', 'Style sheet: "' + styleSheet + '"; ' + message ) );
}

