using System;
using System.Text;
namespace P4API
{
///
/// Defines the exception levels available in P4Connection.
///
public enum P4ExceptionLevels
{
///
/// Exceptions will only be thrown when Perforce has errors. This is the default exception level.
///
NoExceptionOnWarnings,
///
/// Exceptions will never be thrown when Perforce has errors.
///
NoExceptionOnErrors,
///
/// Exceptions will be thrown for both Errors and Warnings.
///
ExceptionOnBothErrorsAndWarnings
}
}