Something I just thought of..

effee

Golden Member
Sep 4, 2004
1,797
0
0
Now, retry speaks for itself, but whats the difference between Abort and Fail. Is one to skip a step and the other to terminate the whole process?
 

lokiju

Lifer
May 29, 2003
18,526
5
0
Abort is you give up

Fail is you didn't give up, you just didn't succeed.
 

AbsolutDealage

Platinum Member
Dec 20, 2002
2,675
0
0
Abort means go back to where you were before the operation was attempted. Fail is give up all together, and stop where you are.
 

skrilla

Senior member
Oct 22, 2004
833
0
71
from wikipedia:

""A" to abort the operation, "R" to try reading the data again, or "F" to attempt to proceed without the necessary data."

If that helps.
 

AbsolutDealage

Platinum Member
Dec 20, 2002
2,675
0
0
Actually, now that I think about it, fail doesn't mean give up, it means to attempt to proceed without the data it was looking for. (That generally leads to a fatal error, and the operation comes to a screeching halt shortly thereafter... hence my previous statement).

So:

Abort: I give up. I don't want to do anything associated with this operation
Retry: Try again
Fail: Go ahead and try to do the operation anyways