Differences between revisions 3 and 5 (spanning 2 versions)
Revision 3 as of 2007-08-21 20:59:24
Size: 385
Editor: gtang
Comment:
Revision 5 as of 2007-08-21 21:00:32
Size: 385
Editor: gtang
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
 *  Here is an example on throwing an exception:
{{{vector< float > EMData::calc_fourier_shell_correlation(EMData * with)
{  
 * Here is an example on throwing an exception:
{{{
vector< float > EMData::calc_fourier_shell_correlation(EMData * with)
{
Line 7: Line 8:
Line 11: Line 11:
    }      }
Line 15: Line 15:
 *
  • Here is an example on throwing an exception:

vector< float > EMData::calc_fourier_shell_correlation(EMData * with)
{
    if (!with) {
        throw NullPointerException("NULL input image");
    }
    if (!EMUtil::is_same_size(this, with)) {
        LOGERR("images not same size");
        throw ImageFormatException( "images not same size");
    }
//...
}

eman2Exception (last edited 2022-02-18 00:42:07 by TunayDurmaz)