Split IO_ERROR out of richio.* and store Problem() and Where() separately
This commit is contained in:
committed by
Wayne Stambaugh
parent
9761c881e2
commit
9ad49dc2d1
@@ -548,7 +548,7 @@ void GITHUB_PLUGIN::remoteGetZip( const wxString& aRepoURL ) throw( IO_ERROR )
|
||||
errorcmd,
|
||||
zip_url.c_str(),
|
||||
TO_UTF8( aRepoURL ),
|
||||
TO_UTF8( ioe.errorText )
|
||||
TO_UTF8( ioe.What() )
|
||||
);
|
||||
|
||||
THROW_IO_ERROR( msg );
|
||||
@@ -587,7 +587,7 @@ int main( int argc, char** argv )
|
||||
}
|
||||
catch( const IO_ERROR& ioe )
|
||||
{
|
||||
printf( "%s\n", TO_UTF8(ioe.errorText) );
|
||||
printf( "%s\n", TO_UTF8(ioe.What()) );
|
||||
}
|
||||
|
||||
UNINIT_LOGGER();
|
||||
|
||||
Reference in New Issue
Block a user