mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Remove all exceptions inside dumpers.
This commit is contained in:
@@ -210,7 +210,11 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
switch(dev.ScsiType)
|
||||
{
|
||||
case PeripheralDeviceTypes.SequentialAccess:
|
||||
if(dumpRaw) throw new ArgumentException("Tapes cannot be dumped raw.");
|
||||
if(dumpRaw)
|
||||
{
|
||||
StoppingErrorMessage?.Invoke("Tapes cannot be dumped raw.");
|
||||
return;
|
||||
}
|
||||
|
||||
Ssc();
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user