pcbnew: catch exceptions for missing modules during netlist update to avoid silent failure on first missing footprint
This commit is contained in:
parent
b682882807
commit
50bb9ce665
|
@ -337,7 +337,16 @@ MODULE* PCB_BASE_FRAME::loadFootprint( const LIB_ID& aFootprintId )
|
||||||
|
|
||||||
wxCHECK_MSG( fptbl, NULL, wxT( "Cannot look up LIB_ID in NULL FP_LIB_TABLE." ) );
|
wxCHECK_MSG( fptbl, NULL, wxT( "Cannot look up LIB_ID in NULL FP_LIB_TABLE." ) );
|
||||||
|
|
||||||
MODULE* module = fptbl->FootprintLoadWithOptionalNickname( aFootprintId );
|
MODULE *module = nullptr;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
module = fptbl->FootprintLoadWithOptionalNickname( aFootprintId );
|
||||||
|
}
|
||||||
|
catch( const IO_ERROR& ioe )
|
||||||
|
{
|
||||||
|
wxLogDebug( wxT( "An error occurred attemping to load footprint '%s'.\n\nError: %s" ),
|
||||||
|
aFootprintId.Format().c_str(), GetChars( ioe.What() ) );
|
||||||
|
}
|
||||||
|
|
||||||
// If the module is found, clear all net info,
|
// If the module is found, clear all net info,
|
||||||
// to be sure there is no broken links
|
// to be sure there is no broken links
|
||||||
|
|
Loading…
Reference in New Issue