mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 10:14:42 +00:00
Turned Z3Exception into a RuntimeException such that throws declarations are not needed anymore. Thanks to codeplex user steimann for this suggestion.
This commit is contained in:
parent
2f4c923216
commit
b7bb53406f
62 changed files with 834 additions and 834 deletions
|
@ -25,7 +25,7 @@ public class RelationSort extends Sort
|
|||
/**
|
||||
* The arity of the relation sort.
|
||||
**/
|
||||
public int getArity() throws Z3Exception
|
||||
public int getArity()
|
||||
{
|
||||
return Native.getRelationArity(getContext().nCtx(), getNativeObject());
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ public class RelationSort extends Sort
|
|||
* The sorts of the columns of the relation sort.
|
||||
* @throws Z3Exception
|
||||
**/
|
||||
public Sort[] getColumnSorts() throws Z3Exception
|
||||
public Sort[] getColumnSorts()
|
||||
{
|
||||
|
||||
if (m_columnSorts != null)
|
||||
|
@ -50,7 +50,7 @@ public class RelationSort extends Sort
|
|||
|
||||
private Sort[] m_columnSorts = null;
|
||||
|
||||
RelationSort(Context ctx, long obj) throws Z3Exception
|
||||
RelationSort(Context ctx, long obj)
|
||||
{
|
||||
super(ctx, obj);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue