Exemplo n.º 1
0
 public DataException()
     : base(Locale.GetText("A Data exception has occurred"))
 {
 }
Exemplo n.º 2
0
 public VersionNotFoundException()
     : base(Locale.GetText("This DataRow has been deleted"))
 {
 }
Exemplo n.º 3
0
 public RowNotInTableException()
     : base(Locale.GetText("This DataRow is not in this DataTable"))
 {
 }
Exemplo n.º 4
0
 public ReadOnlyException()
     : base(Locale.GetText("Cannot change a value in a read-only column"))
 {
 }
 public InvalidConstraintException()
     : base(Locale.GetText("Cannot access or create this relation"))
 {
 }
Exemplo n.º 6
0
 public SyntaxErrorException()
     : base(Locale.GetText("There is a syntax error in this Expression"))
 {
 }
 public InvalidExpressionException()
     : base(Locale.GetText("This Expression is invalid"))
 {
 }
Exemplo n.º 8
0
 public DuplicateNameException()
     : base(Locale.GetText("There is a database object with the same name"))
 {
 }
 internal OperationAbortedException()
     : base(Locale.GetText("An OperationAbortedException has occurred."))
 {
 }
Exemplo n.º 10
0
 public DeletedRowInaccessibleException()
     : base(Locale.GetText("This DataRow has been deleted"))
 {
 }
Exemplo n.º 11
0
 public InRowChangingEventException()
     : base(Locale.GetText("Cannot EndEdit within a RowChanging event"))
 {
 }
Exemplo n.º 12
0
 public TypedDataSetGeneratorException(List <object> list)
     : base(Locale.GetText("System error."))
 {
     this.errorList = list;
 }
Exemplo n.º 13
0
 public TypedDataSetGeneratorException()
     : base(Locale.GetText("System error."))
 {
 }
Exemplo n.º 14
0
 public NoNullAllowedException()
     : base(Locale.GetText("Cannot insert a NULL value"))
 {
 }