예제 #1
0
 public DataException()
     : base(Locale.GetText("A Data exception has occurred"))
 {
 }
예제 #2
0
 public VersionNotFoundException()
     : base(Locale.GetText("This DataRow has been deleted"))
 {
 }
예제 #3
0
 public RowNotInTableException()
     : base(Locale.GetText("This DataRow is not in this DataTable"))
 {
 }
예제 #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"))
 {
 }
예제 #6
0
 public SyntaxErrorException()
     : base(Locale.GetText("There is a syntax error in this Expression"))
 {
 }
 public InvalidExpressionException()
     : base(Locale.GetText("This Expression is invalid"))
 {
 }
예제 #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."))
 {
 }
예제 #10
0
 public DeletedRowInaccessibleException()
     : base(Locale.GetText("This DataRow has been deleted"))
 {
 }
예제 #11
0
 public InRowChangingEventException()
     : base(Locale.GetText("Cannot EndEdit within a RowChanging event"))
 {
 }
예제 #12
0
 public TypedDataSetGeneratorException(List <object> list)
     : base(Locale.GetText("System error."))
 {
     this.errorList = list;
 }
예제 #13
0
 public TypedDataSetGeneratorException()
     : base(Locale.GetText("System error."))
 {
 }
예제 #14
0
 public NoNullAllowedException()
     : base(Locale.GetText("Cannot insert a NULL value"))
 {
 }