@@ -40,10 +40,8 @@ public class DimensionSet {
40
40
* @param v1 Value of the single dimension
41
41
* @return a DimensionSet from the parameters
42
42
* @throws InvalidDimensionException if the dimension name or value is invalid
43
- * @throws DimensionSetExceededException if the number of dimensions exceeds the limit
44
43
*/
45
- public static DimensionSet of (String d1 , String v1 )
46
- throws InvalidDimensionException , DimensionSetExceededException {
44
+ public static DimensionSet of (String d1 , String v1 ) throws InvalidDimensionException {
47
45
return fromEntries (entryOf (d1 , v1 ));
48
46
}
49
47
@@ -56,10 +54,9 @@ public static DimensionSet of(String d1, String v1)
56
54
* @param v2 Value of the second dimension
57
55
* @return a DimensionSet from the parameters
58
56
* @throws InvalidDimensionException if the dimension name or value is invalid
59
- * @throws DimensionSetExceededException if the number of dimensions exceeds the limit
60
57
*/
61
58
public static DimensionSet of (String d1 , String v1 , String d2 , String v2 )
62
- throws InvalidDimensionException , DimensionSetExceededException {
59
+ throws InvalidDimensionException {
63
60
return fromEntries (entryOf (d1 , v1 ), entryOf (d2 , v2 ));
64
61
}
65
62
@@ -74,10 +71,9 @@ public static DimensionSet of(String d1, String v1, String d2, String v2)
74
71
* @param v3 Value of the third dimension
75
72
* @return a DimensionSet from the parameters
76
73
* @throws InvalidDimensionException if the dimension name or value is invalid
77
- * @throws DimensionSetExceededException if the number of dimensions exceeds the limit
78
74
*/
79
75
public static DimensionSet of (String d1 , String v1 , String d2 , String v2 , String d3 , String v3 )
80
- throws InvalidDimensionException , DimensionSetExceededException {
76
+ throws InvalidDimensionException {
81
77
return fromEntries (entryOf (d1 , v1 ), entryOf (d2 , v2 ), entryOf (d3 , v3 ));
82
78
}
83
79
@@ -94,11 +90,10 @@ public static DimensionSet of(String d1, String v1, String d2, String v2, String
94
90
* @param v4 Value of the fourth dimension
95
91
* @return a DimensionSet from the parameters
96
92
* @throws InvalidDimensionException if the dimension name or value is invalid
97
- * @throws DimensionSetExceededException if the number of dimensions exceeds the limit
98
93
*/
99
94
public static DimensionSet of (
100
95
String d1 , String v1 , String d2 , String v2 , String d3 , String v3 , String d4 , String v4 )
101
- throws InvalidDimensionException , DimensionSetExceededException {
96
+ throws InvalidDimensionException {
102
97
103
98
return fromEntries (entryOf (d1 , v1 ), entryOf (d2 , v2 ), entryOf (d3 , v3 ), entryOf (d4 , v4 ));
104
99
}
@@ -118,7 +113,6 @@ public static DimensionSet of(
118
113
* @param v5 Value of the fifth dimension
119
114
* @return a DimensionSet from the parameters
120
115
* @throws InvalidDimensionException if the dimension name or value is invalid
121
- * @throws DimensionSetExceededException if the number of dimensions exceeds the limit
122
116
*/
123
117
public static DimensionSet of (
124
118
String d1 ,
@@ -131,7 +125,7 @@ public static DimensionSet of(
131
125
String v4 ,
132
126
String d5 ,
133
127
String v5 )
134
- throws InvalidDimensionException , DimensionSetExceededException {
128
+ throws InvalidDimensionException {
135
129
136
130
return fromEntries (
137
131
entryOf (d1 , v1 ),
0 commit comments