If you want to add an extra check not provided by argparse, such as:
if variable a == b then c should be not None
is it permissible to raise ArgumentError yourself?
Should you raise Exception instead?
Also what is common practice for this sort of thing you add a piece of code that's almost like a local extension of the library should you use the same Exception type as the library?