
  CONST
{ The exception conditions in the range amc$min_ecc_validation ..
{ amc$max_ecc_validation are detected while validating file access}
{ permissions and request input parameters. Exception conditions of this}
{ class are due to program error or the failure of the user to}
{ provide proper file permissions. Due to the presumed inability of the}
{ program to deal with these exception conditions, the message content}
{ has been oriented to the user. It is presumed that the}
{ exception conditions of this class are returned directly to the}
{ user. However, the program retains the option of ignoring or interpreting}
{ exception conditions of this class, if it chooses.}
{}
*IF $true(osv$unix)
    amc$min_ecc = (($INTEGER ('A') * 100(16)) + $INTEGER ('M')) * 10000(16),
*ELSE
    amc$min_ecc = (($INTEGER ('A') * 100(16)) + $INTEGER ('M')) * 1000000(16),
*IFEND
    amc$min_ecc_validation = amc$min_ecc,
    amc$max_ecc_validation = amc$min_ecc_validation + 999,
{}
{ The exception conditions in the range amc$min_ecc_program_action ..
{ amc$max_ecc_program_action are detected during the execution of a}
{ validated request. Exception conditions of this class are due to}
{ circumstances beyond the control of the program, such as an unrecovered}
{ read error; or the exception condition may be due to a program error}
{ from which the program may easily recover. It is assumed that the program}
{ will interpret the exception conditions of this class and if recovery is}
{ impossible, issue a more meaningful message to the user.}
{}
    amc$min_ecc_program_action = amc$min_ecc_validation + 1000,
    amc$max_ecc_program_action = amc$min_ecc_program_action + 999,


    amc$access_method_id = 'AM';
